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

Side by Side Diff: BUILD.gn

Issue 1369153002: Port most of the remainder of //tools/android from GYP to GN (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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 deps += [ "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" ] 221 deps += [ "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" ]
222 } 222 }
223 223
224 if (is_android) { 224 if (is_android) {
225 deps += [ 225 deps += [
226 "//base/android/linker:chromium_android_linker", 226 "//base/android/linker:chromium_android_linker",
227 "//build/android/gyp/test:hello_world", 227 "//build/android/gyp/test:hello_world",
228 "//build/android/rezip", 228 "//build/android/rezip",
229 "//third_party/errorprone:chromium_errorprone", 229 "//third_party/errorprone:chromium_errorprone",
230 "//tools/android:android_tools", 230 "//tools/android:android_tools",
231 "//tools/android/heap_profiler:heap_profiler_unittests",
231 "//tools/imagediff($host_toolchain)", 232 "//tools/imagediff($host_toolchain)",
232 233
233 # TODO(GYP): Remove these when the components_unittests work. 234 # TODO(GYP): Remove these when the components_unittests work.
234 "//components/history/core/test:test", 235 "//components/history/core/test:test",
235 "//components/policy:policy_component_test_support", 236 "//components/policy:policy_component_test_support",
236 "//components/policy:test_support", 237 "//components/policy:test_support",
237 "//components/rappor:test_support", 238 "//components/rappor:test_support",
238 "//components/signin/core/browser:test_support", 239 "//components/signin/core/browser:test_support",
239 "//components/sync_driver:test_support", 240 "//components/sync_driver:test_support",
240 "//components/user_manager", 241 "//components/user_manager",
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 group("gn_mojo_targets") { 728 group("gn_mojo_targets") {
728 testonly = true 729 testonly = true
729 if (is_linux && !is_chromeos) { 730 if (is_linux && !is_chromeos) {
730 # TODO(GYP): Figure out if any of these should be in gn_all 731 # TODO(GYP): Figure out if any of these should be in gn_all
731 # and figure out how cross-platform they are 732 # and figure out how cross-platform they are
732 deps = [ 733 deps = [
733 "//ipc/mojo:ipc_mojo_perftests", 734 "//ipc/mojo:ipc_mojo_perftests",
734 "//media/mojo/services:cdm_service", 735 "//media/mojo/services:cdm_service",
735 "//media/mojo:tests", 736 "//media/mojo:tests",
736 "//mojo:tests", 737 "//mojo:tests",
738
737 # TODO(use-new-edk): 739 # TODO(use-new-edk):
738 #"//mojo/edk/js/test:js_integration_tests", 740 #"//mojo/edk/js/test:js_integration_tests",
739 #"//mojo/edk/js/tests:js_to_cpp_bindings_python", 741 #"//mojo/edk/js/tests:js_to_cpp_bindings_python",
740 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests", 742 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests",
741 ] 743 ]
742 } 744 }
743 } 745 }
744 746
745 group("gn_visibility") { 747 group("gn_visibility") {
746 deps = [ 748 deps = [
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
1007 if (target_cpu == "x86") { 1009 if (target_cpu == "x86") {
1008 deps += [ 1010 deps += [
1009 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 1011 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009
1010 ] 1012 ]
1011 } 1013 }
1012 } else { 1014 } else {
1013 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 1015 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
1014 } 1016 }
1015 } 1017 }
1016 } 1018 }
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