| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 'type': 'executable', | 97 'type': 'executable', |
| 98 'dependencies': [ | 98 'dependencies': [ |
| 99 '../base/base.gyp:run_all_unittests', | 99 '../base/base.gyp:run_all_unittests', |
| 100 '../testing/gtest.gyp:gtest', | 100 '../testing/gtest.gyp:gtest', |
| 101 'mojo_bindings', | 101 'mojo_bindings', |
| 102 'mojo_public_test_support', | 102 'mojo_public_test_support', |
| 103 'mojo_system', | 103 'mojo_system', |
| 104 ], | 104 ], |
| 105 'sources': [ | 105 'sources': [ |
| 106 'public/tests/bindings_connector_unittest.cc', | 106 'public/tests/bindings_connector_unittest.cc', |
| 107 'public/tests/bindings_remote_ptr_unittest.cc', |
| 108 'public/tests/generated/math_calculator.cc', |
| 109 'public/tests/generated/math_calculator.h', |
| 110 'public/tests/generated/math_calculator_internal.h', |
| 107 'public/tests/system_core_unittest.cc', | 111 'public/tests/system_core_unittest.cc', |
| 108 ], | 112 ], |
| 109 }, | 113 }, |
| 110 { | 114 { |
| 111 'target_name': 'mojo_public_perftests', | 115 'target_name': 'mojo_public_perftests', |
| 112 'type': 'executable', | 116 'type': 'executable', |
| 113 'dependencies': [ | 117 'dependencies': [ |
| 114 '../base/base.gyp:base', | 118 '../base/base.gyp:base', |
| 115 '../base/base.gyp:test_support_perf', | 119 '../base/base.gyp:test_support_perf', |
| 116 '../testing/gtest.gyp:gtest', | 120 '../testing/gtest.gyp:gtest', |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 454 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 451 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 455 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 452 'native_lib_target': 'libmojo_shell', | 456 'native_lib_target': 'libmojo_shell', |
| 453 }, | 457 }, |
| 454 'includes': [ '../build/java_apk.gypi' ], | 458 'includes': [ '../build/java_apk.gypi' ], |
| 455 } | 459 } |
| 456 ], | 460 ], |
| 457 }], | 461 }], |
| 458 ], | 462 ], |
| 459 } | 463 } |
| OLD | NEW |