| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 'type': 'executable', | 112 'type': 'executable', |
| 113 'dependencies': [ | 113 'dependencies': [ |
| 114 '../testing/gtest.gyp:gtest', | 114 '../testing/gtest.gyp:gtest', |
| 115 'mojo_bindings', | 115 'mojo_bindings', |
| 116 'mojo_public_test_support', | 116 'mojo_public_test_support', |
| 117 'mojo_run_all_unittests', | 117 'mojo_run_all_unittests', |
| 118 'mojo_system', | 118 'mojo_system', |
| 119 ], | 119 ], |
| 120 'sources': [ | 120 'sources': [ |
| 121 'public/tests/bindings_connector_unittest.cc', | 121 'public/tests/bindings_connector_unittest.cc', |
| 122 'public/tests/bindings_remote_ptr_unittest.cc', |
| 123 'public/tests/mojom/math_calculator.cc', |
| 124 'public/tests/mojom/math_calculator.h', |
| 125 'public/tests/mojom/math_calculator_internal.h', |
| 122 'public/tests/system_core_unittest.cc', | 126 'public/tests/system_core_unittest.cc', |
| 123 ], | 127 ], |
| 124 }, | 128 }, |
| 125 { | 129 { |
| 126 'target_name': 'mojo_public_perftests', | 130 'target_name': 'mojo_public_perftests', |
| 127 'type': 'executable', | 131 'type': 'executable', |
| 128 'dependencies': [ | 132 'dependencies': [ |
| 129 '../base/base.gyp:base', | 133 '../base/base.gyp:base', |
| 130 '../base/base.gyp:test_support_perf', | 134 '../base/base.gyp:test_support_perf', |
| 131 '../testing/gtest.gyp:gtest', | 135 '../testing/gtest.gyp:gtest', |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 510 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 507 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 511 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 508 'native_lib_target': 'libmojo_shell', | 512 'native_lib_target': 'libmojo_shell', |
| 509 }, | 513 }, |
| 510 'includes': [ '../build/java_apk.gypi' ], | 514 'includes': [ '../build/java_apk.gypi' ], |
| 511 } | 515 } |
| 512 ], | 516 ], |
| 513 }], | 517 }], |
| 514 ], | 518 ], |
| 515 } | 519 } |
| OLD | NEW |