| 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'conditions': [ | 7 'conditions': [ |
| 8 ['mojo_shell_debug_url != ""', { | 8 ['mojo_shell_debug_url != ""', { |
| 9 'defines': [ | 9 'defines': [ |
| 10 'MOJO_SHELL_DEBUG=1', | 10 'MOJO_SHELL_DEBUG=1', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 { | 27 { |
| 28 'target_name': 'mojo', | 28 'target_name': 'mojo', |
| 29 'type': 'none', | 29 'type': 'none', |
| 30 'dependencies': [ | 30 'dependencies': [ |
| 31 'mojo_bindings', | 31 'mojo_bindings', |
| 32 'mojo_compositor_app', | 32 'mojo_compositor_app', |
| 33 'mojo_common_lib', | 33 'mojo_common_lib', |
| 34 'mojo_common_unittests', | 34 'mojo_common_unittests', |
| 35 'mojo_js', | 35 'mojo_js', |
| 36 'mojo_js_unittests', | 36 'mojo_js_unittests', |
| 37 'mojo_public_test_support', | 37 'mojo_public_test_utils', |
| 38 'mojo_public_bindings_unittests', | 38 'mojo_public_bindings_unittests', |
| 39 'mojo_public_environment_unittests', | 39 'mojo_public_environment_unittests', |
| 40 'mojo_public_system_perftests', | 40 'mojo_public_system_perftests', |
| 41 'mojo_public_system_unittests', | 41 'mojo_public_system_unittests', |
| 42 'mojo_public_utility_unittests', | 42 'mojo_public_utility_unittests', |
| 43 'mojo_sample_app', | 43 'mojo_sample_app', |
| 44 'mojo_shell', | 44 'mojo_shell', |
| 45 'mojo_shell_lib', | 45 'mojo_shell_lib', |
| 46 'mojo_shell_unittests', | 46 'mojo_shell_unittests', |
| 47 'mojo_system', | 47 'mojo_system', |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 'target_name': 'mojo_common_unittests', | 250 'target_name': 'mojo_common_unittests', |
| 251 'type': 'executable', | 251 'type': 'executable', |
| 252 'dependencies': [ | 252 'dependencies': [ |
| 253 '../base/base.gyp:base', | 253 '../base/base.gyp:base', |
| 254 '../base/base.gyp:base_message_loop_tests', | 254 '../base/base.gyp:base_message_loop_tests', |
| 255 '../testing/gtest.gyp:gtest', | 255 '../testing/gtest.gyp:gtest', |
| 256 'mojo_bindings', | 256 'mojo_bindings', |
| 257 'mojo_environment_chromium', | 257 'mojo_environment_chromium', |
| 258 'mojo_common_lib', | 258 'mojo_common_lib', |
| 259 'mojo_common_test_support', | 259 'mojo_common_test_support', |
| 260 'mojo_public_test_support', | 260 'mojo_public_test_utils', |
| 261 'mojo_run_all_unittests', | 261 'mojo_run_all_unittests', |
| 262 'mojo_system', | 262 'mojo_system', |
| 263 'mojo_system_impl', | 263 'mojo_system_impl', |
| 264 ], | 264 ], |
| 265 'sources': [ | 265 'sources': [ |
| 266 'common/common_type_converters_unittest.cc', | 266 'common/common_type_converters_unittest.cc', |
| 267 'common/handle_watcher_unittest.cc', | 267 'common/handle_watcher_unittest.cc', |
| 268 'common/message_pump_mojo_unittest.cc', | 268 'common/message_pump_mojo_unittest.cc', |
| 269 'common/test/multiprocess_test_base_unittest.cc', | 269 'common/test/multiprocess_test_base_unittest.cc', |
| 270 ], | 270 ], |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 459 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 460 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 460 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 461 'native_lib_target': 'libmojo_shell', | 461 'native_lib_target': 'libmojo_shell', |
| 462 }, | 462 }, |
| 463 'includes': [ '../build/java_apk.gypi' ], | 463 'includes': [ '../build/java_apk.gypi' ], |
| 464 } | 464 } |
| 465 ], | 465 ], |
| 466 }], | 466 }], |
| 467 ], | 467 ], |
| 468 } | 468 } |
| OLD | NEW |