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 # This is all.gyp file for Android to prevent breakage in Android and other | 5 # This is all.gyp file for Android to prevent breakage in Android and other |
6 # platform; It will be churning a lot in the short term and eventually be merged | 6 # platform; It will be churning a lot in the short term and eventually be merged |
7 # into all.gyp. | 7 # into all.gyp. |
8 | 8 |
9 { | 9 { |
10 'variables': { | 10 'variables': { |
(...skipping 10 matching lines...) Expand all Loading... |
21 '../mojo/mojo.gyp:mojo_shell_apk', | 21 '../mojo/mojo.gyp:mojo_shell_apk', |
22 '<@(android_app_targets)', | 22 '<@(android_app_targets)', |
23 'android_builder_tests', | 23 'android_builder_tests', |
24 '../android_webview/android_webview.gyp:android_webview_apk', | 24 '../android_webview/android_webview.gyp:android_webview_apk', |
25 '../chrome/chrome.gyp:chromium_testshell', | 25 '../chrome/chrome.gyp:chromium_testshell', |
26 '../remoting/remoting.gyp:remoting_apk', | 26 '../remoting/remoting.gyp:remoting_apk', |
27 # TODO(nyquist) This should instead by a target for sync when all of | 27 # TODO(nyquist) This should instead by a target for sync when all of |
28 # the sync-related code for Android has been upstreamed. | 28 # the sync-related code for Android has been upstreamed. |
29 # See http://crbug.com/159203 | 29 # See http://crbug.com/159203 |
30 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_javalib', | 30 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_javalib', |
| 31 '../tools/telemetry/telemetry.gyp:*#host', |
31 ], | 32 ], |
32 }, # target_name: All | 33 }, # target_name: All |
33 { | 34 { |
34 'target_name': 'blink_tests', | 35 'target_name': 'blink_tests', |
35 'type': 'none', | 36 'type': 'none', |
36 'dependencies': [ | 37 'dependencies': [ |
37 '../third_party/WebKit/public/all.gyp:all_blink', | 38 '../third_party/WebKit/public/all.gyp:all_blink', |
38 '../content/content_shell_and_tests.gyp:content_shell_apk', | 39 '../content/content_shell_and_tests.gyp:content_shell_apk', |
39 '../breakpad/breakpad.gyp:dump_syms#host', | 40 '../breakpad/breakpad.gyp:dump_syms#host', |
40 '../breakpad/breakpad.gyp:minidump_stackwalk#host', | 41 '../breakpad/breakpad.gyp:minidump_stackwalk#host', |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 { | 187 { |
187 # Build the java portions of the binary size analysis tool. | 188 # Build the java portions of the binary size analysis tool. |
188 'target_name': 'binary_size_tool', | 189 'target_name': 'binary_size_tool', |
189 'type': 'none', | 190 'type': 'none', |
190 'dependencies': [ | 191 'dependencies': [ |
191 '../tools/binary_size/binary_size.gyp:binary_size_java', | 192 '../tools/binary_size/binary_size.gyp:binary_size_java', |
192 ], | 193 ], |
193 }, | 194 }, |
194 ], # targets | 195 ], # targets |
195 } | 196 } |
OLD | NEW |