Chromium Code Reviews| 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 { |
| 11 'target_name': 'mojo', | 11 'target_name': 'mojo', |
| 12 'type': 'none', | 12 'type': 'none', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 'mojo_public_test_support', | 14 'mojo_public_test_support', |
| 15 'mojo_public_unittests', | 15 'mojo_public_unittests', |
| 16 'mojo_public_perftests', | 16 'mojo_public_perftests', |
| 17 'mojo_system', | 17 'mojo_system', |
| 18 'mojo_system_unittests', | 18 'mojo_system_unittests', |
|
sky
2013/11/06 23:29:41
Can you sort these?
| |
| 19 'mojo_shell_lib', | |
| 20 'mojo_shell', | |
| 21 'mojo_shell_unittests', | |
| 22 'mojo_utility', | |
| 23 'sample_app', | |
| 24 'mojo_bindings', | |
| 25 'mojo_bindings_test', | |
| 26 'native_viewport', | |
|
abarth-chromium
2013/11/06 23:30:17
Can we add the android ones in a condition block?
| |
| 19 ], | 27 ], |
| 20 }, | 28 }, |
| 21 { | 29 { |
| 22 'target_name': 'mojo_public_test_support', | 30 'target_name': 'mojo_public_test_support', |
| 23 'type': 'static_library', | 31 'type': 'static_library', |
| 24 'dependencies': [ | 32 'dependencies': [ |
| 25 '../base/base.gyp:base', | 33 '../base/base.gyp:base', |
| 26 '../testing/gtest.gyp:gtest', | 34 '../testing/gtest.gyp:gtest', |
| 27 'mojo_system', | 35 'mojo_system', |
| 28 ], | 36 ], |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 386 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 394 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 387 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 395 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 388 'native_lib_target': 'libmojo_shell', | 396 'native_lib_target': 'libmojo_shell', |
| 389 }, | 397 }, |
| 390 'includes': [ '../build/java_apk.gypi' ], | 398 'includes': [ '../build/java_apk.gypi' ], |
| 391 } | 399 } |
| 392 ], | 400 ], |
| 393 }], | 401 }], |
| 394 ], | 402 ], |
| 395 } | 403 } |
| OLD | NEW |