| 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 'includes': [ | 9 'includes': [ |
| 10 'mojo_apps.gypi', | 10 'mojo_apps.gypi', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 'mojo_sample_app', | 30 'mojo_sample_app', |
| 31 'mojo_shell', | 31 'mojo_shell', |
| 32 'mojo_shell_lib', | 32 'mojo_shell_lib', |
| 33 'mojo_shell_unittests', | 33 'mojo_shell_unittests', |
| 34 'mojo_system', | 34 'mojo_system', |
| 35 'mojo_system_impl', | 35 'mojo_system_impl', |
| 36 'mojo_system_unittests', | 36 'mojo_system_unittests', |
| 37 'mojo_utility', | 37 'mojo_utility', |
| 38 'mojo_utility_unittests', | 38 'mojo_utility_unittests', |
| 39 ], | 39 ], |
| 40 'conditions': [ |
| 41 ['use_aura==1', { |
| 42 'dependencies': [ |
| 43 'mojo_aura_demo', |
| 44 ], |
| 45 }], |
| 46 ] |
| 40 }, | 47 }, |
| 41 { | 48 { |
| 42 'target_name': 'mojo_run_all_unittests', | 49 'target_name': 'mojo_run_all_unittests', |
| 43 'type': 'static_library', | 50 'type': 'static_library', |
| 44 'dependencies': [ | 51 'dependencies': [ |
| 45 '../base/base.gyp:base', | 52 '../base/base.gyp:base', |
| 46 '../base/base.gyp:test_support_base', | 53 '../base/base.gyp:test_support_base', |
| 47 '../testing/gtest.gyp:gtest', | 54 '../testing/gtest.gyp:gtest', |
| 48 'mojo_system', | 55 'mojo_system', |
| 49 'mojo_system_impl', | 56 'mojo_system_impl', |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 417 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 411 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 418 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 412 'native_lib_target': 'libmojo_shell', | 419 'native_lib_target': 'libmojo_shell', |
| 413 }, | 420 }, |
| 414 'includes': [ '../build/java_apk.gypi' ], | 421 'includes': [ '../build/java_apk.gypi' ], |
| 415 } | 422 } |
| 416 ], | 423 ], |
| 417 }], | 424 }], |
| 418 ], | 425 ], |
| 419 } | 426 } |
| OLD | NEW |