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

Side by Side Diff: mojo/mojo_public.gypi

Issue 242973004: Get sample_app running on Android again (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Check for component build in export Created 6 years, 8 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
« no previous file with comments | « mojo/mojo_examples.gypi ('k') | mojo/mojo_services.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'mojo_system', 4 'target_name': 'mojo_system',
5 'type': 'static_library', 5 'type': 'static_library',
6 'defines': [ 6 'defines': [
7 'MOJO_SYSTEM_IMPLEMENTATION', 7 'MOJO_SYSTEM_IMPLEMENTATION',
8 ], 8 ],
9 'include_dirs': [ 9 'include_dirs': [
10 '..', 10 '..',
11 ], 11 ],
12 'direct_dependent_settings': { 12 'direct_dependent_settings': {
13 'include_dirs': [ 13 'include_dirs': [
14 '..', 14 '..',
15 ], 15 ],
16 }, 16 },
17 'all_dependent_settings': {
18 'conditions': [
19 # We need to be able to call the MojoSetSystemThunks() function in
20 # system_thunks.cc
21 ['OS=="android"', {
22 'ldflags!': [
23 '-Wl,--exclude-libs=ALL',
24 ],
25 }],
26 ],
27 },
17 'sources': [ 28 'sources': [
18 'public/c/system/async_waiter.h', 29 'public/c/system/async_waiter.h',
19 'public/c/system/core.h', 30 'public/c/system/core.h',
20 'public/c/system/macros.h', 31 'public/c/system/macros.h',
21 'public/c/system/system_export.h', 32 'public/c/system/system_export.h',
22 'public/platform/native/system_thunks.cc', 33 'public/platform/native/system_thunks.cc',
23 'public/platform/native/system_thunks.h', 34 'public/platform/native/system_thunks.h',
24 ], 35 ],
25 }, 36 },
26 { 37 {
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 ], 355 ],
345 'dependencies': [ 356 'dependencies': [
346 'mojo_shell_bindings', 357 'mojo_shell_bindings',
347 ], 358 ],
348 'export_dependent_settings': [ 359 'export_dependent_settings': [
349 'mojo_shell_bindings', 360 'mojo_shell_bindings',
350 ], 361 ],
351 }, 362 },
352 ], 363 ],
353 } 364 }
OLDNEW
« no previous file with comments | « mojo/mojo_examples.gypi ('k') | mojo/mojo_services.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698