Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: BUILD.gn

Issue 1379693002: GN: Remove irrelevant targets for Cast Android build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | build/gn_migration.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 211
212 if (is_win) { 212 if (is_win) {
213 deps += [ "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" ] 213 deps += [ "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" ]
214 } 214 }
215 215
216 if (is_android) { 216 if (is_android) {
217 deps += [ 217 deps += [
218 "//base/android/linker:chromium_android_linker", 218 "//base/android/linker:chromium_android_linker",
219 "//build/android/gyp/test:hello_world", 219 "//build/android/gyp/test:hello_world",
220 "//build/android/rezip", 220 "//build/android/rezip",
221 "//chrome/android:chrome_public_apk",
222 "//chrome/android:chrome_public_test_apk",
223 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_ apk",
224 "//third_party/errorprone:chromium_errorprone", 221 "//third_party/errorprone:chromium_errorprone",
225 "//tools/android:android_tools", 222 "//tools/android:android_tools",
226 "//tools/imagediff($host_toolchain)", 223 "//tools/imagediff($host_toolchain)",
227 224
228 # TODO(GYP): Remove these when the components_unittests work. 225 # TODO(GYP): Remove these when the components_unittests work.
229 "//components/history/core/test:test", 226 "//components/history/core/test:test",
230 "//components/policy:policy_component_test_support", 227 "//components/policy:policy_component_test_support",
231 "//components/policy:test_support", 228 "//components/policy:test_support",
232 "//components/rappor:test_support", 229 "//components/rappor:test_support",
233 "//components/signin/core/browser:test_support", 230 "//components/signin/core/browser:test_support",
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 "//ppapi/examples/video_effects", 296 "//ppapi/examples/video_effects",
300 "//ppapi/examples/video_encode", 297 "//ppapi/examples/video_encode",
301 "//third_party/pdfium/samples:pdfium_test", 298 "//third_party/pdfium/samples:pdfium_test",
302 "//tools/gn", 299 "//tools/gn",
303 "//tools/gn:generate_test_gn_data", 300 "//tools/gn:generate_test_gn_data",
304 "//tools/gn:gn_unittests", 301 "//tools/gn:gn_unittests",
305 "//ui/app_list:app_list_unittests", 302 "//ui/app_list:app_list_unittests",
306 "//url:url_unittests", 303 "//url:url_unittests",
307 ] 304 ]
308 305
306 if (!is_chromecast) {
307 deps += [
308 "//chrome/android:chrome_public_apk",
309 "//chrome/android:chrome_public_test_apk",
310 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel l_apk",
311 ]
312 }
313
309 if (has_chrome_android_internal) { 314 if (has_chrome_android_internal) {
310 deps += [ "//clank" ] # TODO(GYP) ?? 315 deps += [ "//clank" ] # TODO(GYP) ??
311 } 316 }
312 } 317 }
313 318
314 if (is_linux) { # TODO(GYP): || is_android || is_bsd? 319 if (is_linux) { # TODO(GYP): || is_android || is_bsd?
315 deps += [ 320 deps += [
316 "//breakpad:core-2-minidump", 321 "//breakpad:core-2-minidump",
317 "//breakpad:minidump-2-core", 322 "//breakpad:minidump-2-core",
318 ] 323 ]
(...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after
978 if (target_cpu == "x86") { 983 if (target_cpu == "x86") {
979 deps += [ 984 deps += [
980 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 985 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009
981 ] 986 ]
982 } 987 }
983 } else { 988 } else {
984 deps += [ "//breakpad:minidump_stackwalk" ] 989 deps += [ "//breakpad:minidump_stackwalk" ]
985 } 990 }
986 } 991 }
987 } 992 }
OLDNEW
« no previous file with comments | « no previous file | build/gn_migration.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698