| 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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 'sources': [ | 357 'sources': [ |
| 358 'shell/desktop/mojo_main.cc', | 358 'shell/desktop/mojo_main.cc', |
| 359 ], | 359 ], |
| 360 }, | 360 }, |
| 361 { | 361 { |
| 362 'target_name': 'mojo_shell_unittests', | 362 'target_name': 'mojo_shell_unittests', |
| 363 'type': 'executable', | 363 'type': 'executable', |
| 364 'dependencies': [ | 364 'dependencies': [ |
| 365 '../base/base.gyp:base', | 365 '../base/base.gyp:base', |
| 366 '../testing/gtest.gyp:gtest', | 366 '../testing/gtest.gyp:gtest', |
| 367 'mojo_common_lib', | 367 'mojo_environment_standalone', |
| 368 'mojo_environment_chromium', | |
| 369 'mojo_run_all_unittests', | 368 'mojo_run_all_unittests', |
| 369 'mojo_utility', |
| 370 'mojo_shell_lib', | 370 'mojo_shell_lib', |
| 371 ], | 371 ], |
| 372 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | 372 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
| 373 'sources': [ | 373 'sources': [ |
| 374 'shell/service_connector_unittest.cc', | 374 'shell/service_connector_unittest.cc', |
| 375 'shell/test.mojom', | 375 'shell/test.mojom', |
| 376 ], | 376 ], |
| 377 }, | 377 }, |
| 378 ], | 378 ], |
| 379 'conditions': [ | 379 'conditions': [ |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 451 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 452 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 452 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 453 'native_lib_target': 'libmojo_shell', | 453 'native_lib_target': 'libmojo_shell', |
| 454 }, | 454 }, |
| 455 'includes': [ '../build/java_apk.gypi' ], | 455 'includes': [ '../build/java_apk.gypi' ], |
| 456 } | 456 } |
| 457 ], | 457 ], |
| 458 }], | 458 }], |
| 459 ], | 459 ], |
| 460 } | 460 } |
| OLD | NEW |