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/buffer_unittest.cc', |
129 'public/tests/math_calculator.mojom', | 130 'public/tests/math_calculator.mojom', |
130 'public/tests/system_core_unittest.cc', | 131 'public/tests/system_core_unittest.cc', |
131 ], | 132 ], |
132 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | 133 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
133 }, | 134 }, |
134 { | 135 { |
135 'target_name': 'mojo_public_perftests', | 136 'target_name': 'mojo_public_perftests', |
136 'type': 'executable', | 137 'type': 'executable', |
137 'dependencies': [ | 138 'dependencies': [ |
138 '../base/base.gyp:base', | 139 '../base/base.gyp:base', |
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
568 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 569 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
569 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 570 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
570 'native_lib_target': 'libmojo_shell', | 571 'native_lib_target': 'libmojo_shell', |
571 }, | 572 }, |
572 'includes': [ '../build/java_apk.gypi' ], | 573 'includes': [ '../build/java_apk.gypi' ], |
573 } | 574 } |
574 ], | 575 ], |
575 }], | 576 }], |
576 ], | 577 ], |
577 } | 578 } |
OLD | NEW |