OLD | NEW |
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': { | 17 'all_dependent_settings': { |
18 'conditions': [ | 18 'conditions': [ |
19 # We need to be able to call the MojoSetSystemThunks() function in | 19 # We need to be able to call the MojoSetSystemThunks() function in |
20 # system_thunks.cc | 20 # system_thunks.cc |
21 ['OS=="android"', { | 21 ['OS=="android"', { |
22 'ldflags!': [ | 22 'ldflags!': [ |
23 '-Wl,--exclude-libs=ALL', | 23 '-Wl,--exclude-libs=ALL', |
24 ], | 24 ], |
25 }], | 25 }], |
26 ], | 26 ], |
27 }, | 27 }, |
28 'sources': [ | 28 'sources': [ |
29 'public/c/system/core.h', | 29 'public/c/system/core.h', |
| 30 'public/c/system/functions.h', |
30 'public/c/system/macros.h', | 31 'public/c/system/macros.h', |
31 'public/c/system/system_export.h', | 32 'public/c/system/system_export.h', |
32 'public/c/system/types.h', | 33 'public/c/system/types.h', |
33 'public/platform/native/system_thunks.cc', | 34 'public/platform/native/system_thunks.cc', |
34 'public/platform/native/system_thunks.h', | 35 'public/platform/native/system_thunks.h', |
35 ], | 36 ], |
36 }, | 37 }, |
37 { | 38 { |
38 'target_name': 'mojo_gles2', | 39 'target_name': 'mojo_gles2', |
39 'type': 'shared_library', | 40 'type': 'shared_library', |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 }, | 419 }, |
419 'dependencies': [ | 420 'dependencies': [ |
420 'mojo_public_java', | 421 'mojo_public_java', |
421 ], | 422 ], |
422 'includes': [ '../build/java.gypi' ], | 423 'includes': [ '../build/java.gypi' ], |
423 }, | 424 }, |
424 ], | 425 ], |
425 }], | 426 }], |
426 ], | 427 ], |
427 } | 428 } |
OLD | NEW |