OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 'dependencies': [ | 119 'dependencies': [ |
120 '../testing/gtest.gyp:gtest', | 120 '../testing/gtest.gyp:gtest', |
121 'mojo_bindings', | 121 'mojo_bindings', |
122 'mojo_public_test_support', | 122 'mojo_public_test_support', |
123 'mojo_run_all_unittests', | 123 'mojo_run_all_unittests', |
124 'mojo_system', | 124 'mojo_system', |
125 ], | 125 ], |
126 'sources': [ | 126 'sources': [ |
127 'public/tests/bindings_connector_unittest.cc', | 127 'public/tests/bindings_connector_unittest.cc', |
128 'public/tests/bindings_remote_ptr_unittest.cc', | 128 'public/tests/bindings_remote_ptr_unittest.cc', |
129 'public/tests/mojom/math_calculator.cc', | 129 'public/tests/math_calculator.mojom', |
130 'public/tests/mojom/math_calculator.h', | |
131 'public/tests/mojom/math_calculator_internal.h', | |
132 'public/tests/system_core_unittest.cc', | 130 'public/tests/system_core_unittest.cc', |
133 ], | 131 ], |
| 132 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
134 }, | 133 }, |
135 { | 134 { |
136 'target_name': 'mojo_public_perftests', | 135 'target_name': 'mojo_public_perftests', |
137 'type': 'executable', | 136 'type': 'executable', |
138 'dependencies': [ | 137 'dependencies': [ |
139 '../base/base.gyp:base', | 138 '../base/base.gyp:base', |
140 '../base/base.gyp:test_support_perf', | 139 '../base/base.gyp:test_support_perf', |
141 '../testing/gtest.gyp:gtest', | 140 '../testing/gtest.gyp:gtest', |
142 'mojo_public_test_support', | 141 'mojo_public_test_support', |
143 'mojo_run_all_unittests', | 142 'mojo_run_all_unittests', |
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 568 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
570 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 569 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
571 'native_lib_target': 'libmojo_shell', | 570 'native_lib_target': 'libmojo_shell', |
572 }, | 571 }, |
573 'includes': [ '../build/java_apk.gypi' ], | 572 'includes': [ '../build/java_apk.gypi' ], |
574 } | 573 } |
575 ], | 574 ], |
576 }], | 575 }], |
577 ], | 576 ], |
578 } | 577 } |
OLD | NEW |