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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 'type': 'executable', | 108 'type': 'executable', |
109 'dependencies': [ | 109 'dependencies': [ |
110 '../testing/gtest.gyp:gtest', | 110 '../testing/gtest.gyp:gtest', |
111 'mojo_bindings', | 111 'mojo_bindings', |
112 'mojo_public_test_support', | 112 'mojo_public_test_support', |
113 'mojo_run_all_unittests', | 113 'mojo_run_all_unittests', |
114 'mojo_system', | 114 'mojo_system', |
115 ], | 115 ], |
116 'sources': [ | 116 'sources': [ |
117 'public/tests/bindings_connector_unittest.cc', | 117 'public/tests/bindings_connector_unittest.cc', |
| 118 'public/tests/bindings_remote_ptr_unittest.cc', |
| 119 'public/tests/mojom/math_calculator.cc', |
| 120 'public/tests/mojom/math_calculator.h', |
| 121 'public/tests/mojom/math_calculator_internal.h', |
118 'public/tests/system_core_unittest.cc', | 122 'public/tests/system_core_unittest.cc', |
119 ], | 123 ], |
120 }, | 124 }, |
121 { | 125 { |
122 'target_name': 'mojo_public_perftests', | 126 'target_name': 'mojo_public_perftests', |
123 'type': 'executable', | 127 'type': 'executable', |
124 'dependencies': [ | 128 'dependencies': [ |
125 '../base/base.gyp:base', | 129 '../base/base.gyp:base', |
126 '../base/base.gyp:test_support_perf', | 130 '../base/base.gyp:test_support_perf', |
127 '../testing/gtest.gyp:gtest', | 131 '../testing/gtest.gyp:gtest', |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 466 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
463 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 467 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
464 'native_lib_target': 'libmojo_shell', | 468 'native_lib_target': 'libmojo_shell', |
465 }, | 469 }, |
466 'includes': [ '../build/java_apk.gypi' ], | 470 'includes': [ '../build/java_apk.gypi' ], |
467 } | 471 } |
468 ], | 472 ], |
469 }], | 473 }], |
470 ], | 474 ], |
471 } | 475 } |
OLD | NEW |