Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: runtime/third_party/jscre/jscre.gypi

Issue 10823209: Add support for building the Dart VM for Android OS. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address cshapiro's review comments, pass 2 Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2010 Google Inc. All Rights Reserved. 1 # Copyright 2010 Google Inc. All Rights Reserved.
2 2
3 { 3 {
4 'targets': [ 4 'targets': [
5 { 5 {
6 'target_name': 'libjscre', 6 'target_name': 'libjscre',
7 'type': 'static_library', 7 'type': 'static_library',
8 'dependencies': [ 8 'dependencies': [
9 ], 9 ],
10 'include_dirs': [ 10 'include_dirs': [
11 '.', 11 '.',
12 ], 12 ],
13 'defines': [ 13 'defines': [
14 'SUPPORT_UTF8', 14 'SUPPORT_UTF8',
15 'SUPPORT_UCP', 15 'SUPPORT_UCP',
16 'NO_RECURSE', 16 'NO_RECURSE',
17 ], 17 ],
18 'sources': [ 18 'sources': [
19 'ASCIICType.h', 19 'ASCIICType.h',
20 'config.h', 20 'config.h',
21 'pcre.h', 21 'pcre.h',
22 'pcre_internal.h', 22 'pcre_internal.h',
23 'ucpinternal.h', 23 'ucpinternal.h',
24 'pcre_compile.cpp', 24 'pcre_compile.cpp',
25 'pcre_exec.cpp', 25 'pcre_exec.cpp',
26 'pcre_tables.cpp', 26 'pcre_tables.cpp',
27 'pcre_ucp_searchfuncs.cpp', 27 'pcre_ucp_searchfuncs.cpp',
28 'pcre_xclass.cpp', 28 'pcre_xclass.cpp',
29 ], 29 ],
30 'conditions': [
31 ['dart_want_separate_host_toolset==1', {
32 'toolsets': ['host', 'target'],
33 }, {
34 'toolsets': ['target'],
35 }]
36 ],
30 }, 37 },
31 ], 38 ],
32 } 39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698