| OLD | NEW |
| 1 { | 1 { |
| 2 'targets': [ | 2 'targets': [ |
| 3 { | 3 { |
| 4 'target_name': 'mojo_system', | 4 'target_name': 'mojo_system', |
| 5 'type': 'shared_library', | 5 'type': 'shared_library', |
| 6 'defines': [ | 6 'defines': [ |
| 7 'MOJO_SYSTEM_IMPLEMENTATION', | 7 'MOJO_SYSTEM_IMPLEMENTATION', |
| 8 ], | 8 ], |
| 9 'include_dirs': [ | 9 'include_dirs': [ |
| 10 '..', | 10 '..', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 'direct_dependent_settings': { | 40 'direct_dependent_settings': { |
| 41 'include_dirs': [ | 41 'include_dirs': [ |
| 42 '..', | 42 '..', |
| 43 ], | 43 ], |
| 44 'defines': [ | 44 'defines': [ |
| 45 'GLES2_USE_MOJO', | 45 'GLES2_USE_MOJO', |
| 46 ], | 46 ], |
| 47 }, | 47 }, |
| 48 'sources': [ | 48 'sources': [ |
| 49 'public/gles2/gles2.h', | 49 'public/gles2/gles2.h', |
| 50 'public/gles2/gles2_export.h', |
| 50 'public/gles2/gles2_private.cc', | 51 'public/gles2/gles2_private.cc', |
| 51 'public/gles2/gles2_private.h', | 52 'public/gles2/gles2_private.h', |
| 52 'public/gles2/gles2_export.h', | |
| 53 ], | 53 ], |
| 54 }, | 54 }, |
| 55 { | 55 { |
| 56 'target_name': 'mojo_test_support', |
| 57 'type': 'shared_library', |
| 58 'defines': [ |
| 59 'MOJO_TEST_SUPPORT_IMPLEMENTATION', |
| 60 ], |
| 61 'include_dirs': [ |
| 62 '..', |
| 63 ], |
| 64 'direct_dependent_settings': { |
| 65 'include_dirs': [ |
| 66 '..', |
| 67 ], |
| 68 }, |
| 69 'sources': [ |
| 70 'public/tests/test_support.h', |
| 71 'public/tests/test_support_private.cc', |
| 72 'public/tests/test_support_private.h', |
| 73 'public/tests/test_support_export.h', |
| 74 ], |
| 75 }, |
| 76 { |
| 56 'target_name': 'mojo_public_test_utils', | 77 'target_name': 'mojo_public_test_utils', |
| 57 'type': 'static_library', | 78 'type': 'static_library', |
| 58 'dependencies': [ | 79 'dependencies': [ |
| 59 '../base/base.gyp:base', | 80 '../base/base.gyp:base', |
| 60 '../testing/gtest.gyp:gtest', | 81 '../testing/gtest.gyp:gtest', |
| 61 'mojo_system', | 82 'mojo_system', |
| 83 'mojo_test_support', |
| 62 ], | 84 ], |
| 63 'sources': [ | 85 'sources': [ |
| 64 'public/tests/test_utils.cc', | 86 'public/tests/test_utils.cc', |
| 65 'public/tests/test_utils.h', | 87 'public/tests/test_utils.h', |
| 66 ], | 88 ], |
| 67 }, | 89 }, |
| 68 { | 90 { |
| 69 'target_name': 'mojo_public_bindings_unittests', | 91 'target_name': 'mojo_public_bindings_unittests', |
| 70 'type': 'executable', | 92 'type': 'executable', |
| 71 'dependencies': [ | 93 'dependencies': [ |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 'public/shell/service.h', | 298 'public/shell/service.h', |
| 277 ], | 299 ], |
| 278 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | 300 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
| 279 'export_dependent_settings': [ | 301 'export_dependent_settings': [ |
| 280 'mojo_bindings', | 302 'mojo_bindings', |
| 281 'mojo_system', | 303 'mojo_system', |
| 282 ], | 304 ], |
| 283 }, | 305 }, |
| 284 ], | 306 ], |
| 285 } | 307 } |
| OLD | NEW |