OLD | NEW |
1 { | 1 { |
2 'targets': [ | 2 'targets': [ |
3 { | 3 { |
4 'target_name': 'mojo_system', | 4 'target_name': 'mojo_system', |
5 'type': '<(component)', | 5 'type': '<(component)', |
6 'defines': [ | 6 'defines': [ |
7 'MOJO_SYSTEM_IMPLEMENTATION', | 7 'MOJO_SYSTEM_IMPLEMENTATION', |
8 ], | 8 ], |
9 'include_dirs': [ | 9 'include_dirs': [ |
10 '..', | 10 '..', |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 '../testing/gtest.gyp:gtest', | 136 '../testing/gtest.gyp:gtest', |
137 'mojo_bindings', | 137 'mojo_bindings', |
138 'mojo_environment_standalone', | 138 'mojo_environment_standalone', |
139 'mojo_public_test_utils', | 139 'mojo_public_test_utils', |
140 'mojo_run_all_unittests', | 140 'mojo_run_all_unittests', |
141 'mojo_sample_service', | 141 'mojo_sample_service', |
142 'mojo_system', | 142 'mojo_system', |
143 'mojo_utility', | 143 'mojo_utility', |
144 ], | 144 ], |
145 'sources': [ | 145 'sources': [ |
146 'public/bindings/tests/array_unittest.cc', | |
147 'public/bindings/tests/buffer_unittest.cc', | |
148 'public/bindings/tests/connector_unittest.cc', | |
149 'public/bindings/tests/handle_passing_unittest.cc', | |
150 'public/bindings/tests/math_calculator.mojom', | 146 'public/bindings/tests/math_calculator.mojom', |
151 'public/bindings/tests/remote_ptr_unittest.cc', | |
152 'public/bindings/tests/request_response_unittest.cc', | |
153 'public/bindings/tests/router_unittest.cc', | |
154 'public/bindings/tests/sample_factory.mojom', | 147 'public/bindings/tests/sample_factory.mojom', |
155 'public/bindings/tests/sample_interfaces.mojom', | 148 'public/bindings/tests/sample_interfaces.mojom', |
156 'public/bindings/tests/sample_service_unittest.cc', | |
157 'public/bindings/tests/test_structs.mojom', | 149 'public/bindings/tests/test_structs.mojom', |
158 'public/bindings/tests/type_conversion_unittest.cc', | 150 'public/cpp/bindings/tests/array_unittest.cc', |
| 151 'public/cpp/bindings/tests/buffer_unittest.cc', |
| 152 'public/cpp/bindings/tests/connector_unittest.cc', |
| 153 'public/cpp/bindings/tests/handle_passing_unittest.cc', |
| 154 'public/cpp/bindings/tests/remote_ptr_unittest.cc', |
| 155 'public/cpp/bindings/tests/request_response_unittest.cc', |
| 156 'public/cpp/bindings/tests/router_unittest.cc', |
| 157 'public/cpp/bindings/tests/sample_service_unittest.cc', |
| 158 'public/cpp/bindings/tests/type_conversion_unittest.cc', |
159 ], | 159 ], |
160 'variables': { | 160 'variables': { |
161 'mojom_base_output_dir': 'mojo', | 161 'mojom_base_output_dir': 'mojo', |
162 }, | 162 }, |
163 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | 163 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
164 }, | 164 }, |
165 { | 165 { |
166 'target_name': 'mojo_public_environment_unittests', | 166 'target_name': 'mojo_public_environment_unittests', |
167 'type': 'executable', | 167 'type': 'executable', |
168 'dependencies': [ | 168 'dependencies': [ |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 ], | 383 ], |
384 'dependencies': [ | 384 'dependencies': [ |
385 'mojo_shell_bindings', | 385 'mojo_shell_bindings', |
386 ], | 386 ], |
387 'export_dependent_settings': [ | 387 'export_dependent_settings': [ |
388 'mojo_shell_bindings', | 388 'mojo_shell_bindings', |
389 ], | 389 ], |
390 }, | 390 }, |
391 ], | 391 ], |
392 } | 392 } |
OLD | NEW |