| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 'dependencies': [ | 47 'dependencies': [ |
| 48 '../content/content_shell_and_tests.gyp:content_shell_apk', | 48 '../content/content_shell_and_tests.gyp:content_shell_apk', |
| 49 '../mojo/mojo.gyp:mojo_shell_apk', | 49 '../mojo/mojo.gyp:mojo_shell_apk', |
| 50 '../mojo/mojo.gyp:mojo_test_apk', | 50 '../mojo/mojo.gyp:mojo_test_apk', |
| 51 '<@(android_app_targets)', | 51 '<@(android_app_targets)', |
| 52 'android_builder_tests', | 52 'android_builder_tests', |
| 53 '../android_webview/android_webview.gyp:android_webview_apk', | 53 '../android_webview/android_webview.gyp:android_webview_apk', |
| 54 '../chrome/chrome.gyp:chrome_shell_apk', | 54 '../chrome/chrome.gyp:chrome_shell_apk', |
| 55 '../remoting/remoting.gyp:remoting_apk', | 55 '../remoting/remoting.gyp:remoting_apk', |
| 56 '../tools/telemetry/telemetry.gyp:*#host', | 56 '../tools/telemetry/telemetry.gyp:*#host', |
| 57 '../tools/relocation_packer/relocation_packer.gyp:relocation_packer_
unittests#host', | |
| 58 # TODO(nyquist) This should instead by a target for sync when all of | 57 # TODO(nyquist) This should instead by a target for sync when all of |
| 59 # the sync-related code for Android has been upstreamed. | 58 # the sync-related code for Android has been upstreamed. |
| 60 # See http://crbug.com/159203 | 59 # See http://crbug.com/159203 |
| 61 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid
ation_javalib', | 60 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid
ation_javalib', |
| 62 ], | 61 ], |
| 63 }, { | 62 }, { |
| 64 'dependencies': [ | 63 'dependencies': [ |
| 65 '../content/content_shell_and_tests.gyp:*', | 64 '../content/content_shell_and_tests.gyp:*', |
| 66 # TODO: This should build on Android and the target should move to t
he list above. | 65 # TODO: This should build on Android and the target should move to t
he list above. |
| 67 '../sync/sync.gyp:*', | 66 '../sync/sync.gyp:*', |
| 68 ], | 67 ], |
| 69 }], | 68 }], |
| 69 ['OS=="android" and (target_arch=="arm" or target_arch=="arm64")', { |
| 70 'dependencies': [ |
| 71 '../tools/relocation_packer/relocation_packer.gyp:relocation_packer_
unittests#host', |
| 72 ], |
| 73 }], |
| 70 ['OS!="ios" and OS!="android"', { | 74 ['OS!="ios" and OS!="android"', { |
| 71 'dependencies': [ | 75 'dependencies': [ |
| 72 '../third_party/re2/re2.gyp:re2', | 76 '../third_party/re2/re2.gyp:re2', |
| 73 '../chrome/chrome.gyp:*', | 77 '../chrome/chrome.gyp:*', |
| 74 '../cc/cc_tests.gyp:*', | 78 '../cc/cc_tests.gyp:*', |
| 75 '../device/bluetooth/bluetooth.gyp:*', | 79 '../device/bluetooth/bluetooth.gyp:*', |
| 76 '../device/device_tests.gyp:*', | 80 '../device/device_tests.gyp:*', |
| 77 '../device/usb/usb.gyp:*', | 81 '../device/usb/usb.gyp:*', |
| 78 '../gin/gin.gyp:*', | 82 '../gin/gin.gyp:*', |
| 79 '../gpu/gpu.gyp:*', | 83 '../gpu/gpu.gyp:*', |
| (...skipping 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1270 'dependencies': [ | 1274 'dependencies': [ |
| 1271 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1275 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
| 1272 '../ui/views/views.gyp:views', | 1276 '../ui/views/views.gyp:views', |
| 1273 '../ui/views/views.gyp:views_unittests', | 1277 '../ui/views/views.gyp:views_unittests', |
| 1274 ], | 1278 ], |
| 1275 }, # target_name: macviews_builder | 1279 }, # target_name: macviews_builder |
| 1276 ], # targets | 1280 ], # targets |
| 1277 }], # os=='mac' and toolkit_views==1 | 1281 }], # os=='mac' and toolkit_views==1 |
| 1278 ], # conditions | 1282 ], # conditions |
| 1279 } | 1283 } |
| OLD | NEW |