Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # A hook that can be overridden in other repositories to add additional | 7 # A hook that can be overridden in other repositories to add additional |
| 8 # compilation targets to 'All'. Only used on Android. | 8 # compilation targets to 'All'. Only used on Android. |
| 9 'android_app_targets%': [], | 9 'android_app_targets%': [], |
| 10 }, | 10 }, |
| (...skipping 21 matching lines...) Expand all Loading... | |
| 32 '../ui/accessibility/accessibility.gyp:*', | 32 '../ui/accessibility/accessibility.gyp:*', |
| 33 '../ui/base/ui_base.gyp:*', | 33 '../ui/base/ui_base.gyp:*', |
| 34 '../ui/display/display.gyp:display_unittests', | 34 '../ui/display/display.gyp:display_unittests', |
| 35 '../ui/snapshot/snapshot.gyp:*', | 35 '../ui/snapshot/snapshot.gyp:*', |
| 36 '../url/url.gyp:*', | 36 '../url/url.gyp:*', |
| 37 ], | 37 ], |
| 38 'conditions': [ | 38 'conditions': [ |
| 39 ['OS=="ios"', { | 39 ['OS=="ios"', { |
| 40 'dependencies': [ | 40 'dependencies': [ |
| 41 '../ios/ios.gyp:*', | 41 '../ios/ios.gyp:*', |
| 42 '../mojo/mojo_base.gyp:mojo_common_lib', | |
|
qsr
2014/09/05 08:27:32
why don't you put all of mojo_base here?
blundell
2014/09/05 08:33:11
mojo_js_bindings_lib has a dependency on v8, which
qsr
2014/09/05 08:36:04
:( Ok, I guess that means someone on the iOS team
viettrungluu
2014/09/05 16:59:06
I agree that this is a little unfortunate. What bo
blundell
2014/09/08 08:59:52
It will build on the iOS bots on the main Chromium
| |
| 43 '../mojo/mojo_base.gyp:mojo_common_unittests', | |
| 44 '../mojo/mojo_base.gyp:mojo_cpp_bindings', | |
| 45 '../mojo/mojo_base.gyp:mojo_public_bindings_unittests', | |
| 46 '../mojo/mojo_base.gyp:mojo_public_environment_unittests', | |
| 47 '../mojo/mojo_base.gyp:mojo_public_system_perftests', | |
| 48 '../mojo/mojo_base.gyp:mojo_public_system_unittests', | |
| 49 '../mojo/mojo_base.gyp:mojo_public_test_utils', | |
| 50 '../mojo/mojo_base.gyp:mojo_public_utility_unittests', | |
| 51 '../mojo/mojo_base.gyp:mojo_system', | |
| 52 '../mojo/mojo_base.gyp:mojo_system_impl', | |
| 53 '../mojo/mojo_base.gyp:mojo_system_unittests', | |
| 42 '../ui/gfx/gfx_tests.gyp:gfx_unittests', | 54 '../ui/gfx/gfx_tests.gyp:gfx_unittests', |
| 43 '../ui/ui_unittests.gyp:ui_unittests', | 55 '../ui/ui_unittests.gyp:ui_unittests', |
| 44 ], | 56 ], |
| 45 }], | 57 }], |
| 46 ['OS=="android"', { | 58 ['OS=="android"', { |
| 47 'dependencies': [ | 59 'dependencies': [ |
| 48 '../content/content_shell_and_tests.gyp:content_shell_apk', | 60 '../content/content_shell_and_tests.gyp:content_shell_apk', |
| 49 '../mojo/mojo.gyp:mojo_shell_apk', | 61 '../mojo/mojo.gyp:mojo_shell_apk', |
| 50 '../mojo/mojo_base.gyp:mojo_test_apk', | 62 '../mojo/mojo_base.gyp:mojo_test_apk', |
| 51 '<@(android_app_targets)', | 63 '<@(android_app_targets)', |
| (...skipping 1254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1306 'dependencies': [ | 1318 'dependencies': [ |
| 1307 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1319 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
| 1308 '../ui/views/views.gyp:views', | 1320 '../ui/views/views.gyp:views', |
| 1309 '../ui/views/views.gyp:views_unittests', | 1321 '../ui/views/views.gyp:views_unittests', |
| 1310 ], | 1322 ], |
| 1311 }, # target_name: macviews_builder | 1323 }, # target_name: macviews_builder |
| 1312 ], # targets | 1324 ], # targets |
| 1313 }], # os=='mac' and toolkit_views==1 | 1325 }], # os=='mac' and toolkit_views==1 |
| 1314 ], # conditions | 1326 ], # conditions |
| 1315 } | 1327 } |
| OLD | NEW |