| 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', |
| 11 'mojo_examples.gypi', | 11 'mojo_examples.gypi', |
| 12 'mojo_public.gypi', | 12 'mojo_public.gypi', |
| 13 'mojo_services.gypi', | 13 'mojo_services.gypi', |
| 14 ], | 14 ], |
| 15 'targets': [ | 15 'targets': [ |
| 16 { | 16 { |
| 17 'target_name': 'mojo', | 17 'target_name': 'mojo', |
| 18 'type': 'none', | 18 'type': 'none', |
| 19 'dependencies': [ | 19 'dependencies': [ |
| 20 'mojo_bindings', | 20 'mojo_bindings', |
| 21 'mojo_bindings_unittests', | |
| 22 'mojo_common_lib', | 21 'mojo_common_lib', |
| 23 'mojo_common_unittests', | 22 'mojo_common_unittests', |
| 24 'mojo_js', | 23 'mojo_js', |
| 25 'mojo_js_unittests', | 24 'mojo_js_unittests', |
| 26 'mojo_public_perftests', | |
| 27 'mojo_public_test_support', | 25 'mojo_public_test_support', |
| 28 'mojo_public_unittests', | 26 'mojo_public_bindings_unittests', |
| 27 'mojo_public_system_perftests', |
| 28 'mojo_public_system_unittests', |
| 29 'mojo_public_utility_unittests', |
| 29 'mojo_sample_app', | 30 'mojo_sample_app', |
| 30 'mojo_shell', | 31 'mojo_shell', |
| 31 'mojo_shell_lib', | 32 'mojo_shell_lib', |
| 32 'mojo_shell_unittests', | 33 'mojo_shell_unittests', |
| 33 'mojo_system', | 34 'mojo_system', |
| 34 'mojo_system_impl', | 35 'mojo_system_impl', |
| 35 'mojo_system_unittests', | 36 'mojo_system_unittests', |
| 36 'mojo_utility', | 37 'mojo_utility', |
| 37 'mojo_utility_unittests', | |
| 38 ], | 38 ], |
| 39 'conditions': [ | 39 'conditions': [ |
| 40 ['use_aura==1', { | 40 ['use_aura==1', { |
| 41 'dependencies': [ | 41 'dependencies': [ |
| 42 'mojo_aura_demo', | 42 'mojo_aura_demo', |
| 43 ], | 43 ], |
| 44 }], | 44 }], |
| 45 ] | 45 ] |
| 46 }, | 46 }, |
| 47 { | 47 { |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 422 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 423 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 423 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 424 'native_lib_target': 'libmojo_shell', | 424 'native_lib_target': 'libmojo_shell', |
| 425 }, | 425 }, |
| 426 'includes': [ '../build/java_apk.gypi' ], | 426 'includes': [ '../build/java_apk.gypi' ], |
| 427 } | 427 } |
| 428 ], | 428 ], |
| 429 }], | 429 }], |
| 430 ], | 430 ], |
| 431 } | 431 } |
| OLD | NEW |