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

Side by Side Diff: BUILD.gn

Issue 1393733002: Fix GN compile of gn_all (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 | no next file » | 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 "//device:device_unittests", 99 "//device:device_unittests",
100 "//extensions:extensions_browsertests", 100 "//extensions:extensions_browsertests",
101 "//extensions:extensions_unittests", 101 "//extensions:extensions_unittests",
102 "//google_apis/gcm:gcm_unit_tests", 102 "//google_apis/gcm:gcm_unit_tests",
103 "//gpu:gpu_unittests", 103 "//gpu:gpu_unittests",
104 "//gpu/gles2_conform_support:gles2_conform_test", 104 "//gpu/gles2_conform_support:gles2_conform_test",
105 "//ipc:ipc_tests", 105 "//ipc:ipc_tests",
106 "//ipc/mojo:ipc_mojo_unittests", 106 "//ipc/mojo:ipc_mojo_unittests",
107 "//jingle:jingle_unittests", 107 "//jingle:jingle_unittests",
108 "//media:media_unittests", 108 "//media:media_unittests",
109 "//media/cast:cast_unittests",
110 "//media/midi:midi_unittests", 109 "//media/midi:midi_unittests",
111 "//mojo", 110 "//mojo",
112 "//mojo/application/public/cpp", 111 "//mojo/application/public/cpp",
113 "//mojo/common:mojo_common_unittests", 112 "//mojo/common:mojo_common_unittests",
114 "//net:hpack_example_generator", 113 "//net:hpack_example_generator",
115 "//net:hpack_fuzz_mutator", 114 "//net:hpack_fuzz_mutator",
116 "//net:hpack_fuzz_wrapper", 115 "//net:hpack_fuzz_wrapper",
117 "//net:net_perftests", 116 "//net:net_perftests",
118 "//ppapi:ppapi_unittests", 117 "//ppapi:ppapi_unittests",
119 "//ppapi/examples/2d", 118 "//ppapi/examples/2d",
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
609 "//testing/gtest:gtest_main", 608 "//testing/gtest:gtest_main",
610 "//third_party/codesighs:msmap2tsv", 609 "//third_party/codesighs:msmap2tsv",
611 "//third_party/pdfium/samples:pdfium_diff", 610 "//third_party/pdfium/samples:pdfium_diff",
612 "//ui/metro_viewer", 611 "//ui/metro_viewer",
613 ] 612 ]
614 deps -= [ 613 deps -= [
615 "//crypto:crypto_unittests", # TODO(GYP) 614 "//crypto:crypto_unittests", # TODO(GYP)
616 "//net:net_unittests", # TODO(GYP) 615 "//net:net_unittests", # TODO(GYP)
617 ] 616 ]
618 } else if (!is_android && !is_ios) { 617 } else if (!is_android && !is_ios) {
619 deps += [ "//breakpad:symupload" ] 618 deps += [
619 "//breakpad:symupload",
620 "//media/cast:cast_unittests",
621 ]
620 } 622 }
621 } 623 }
622 624
623 group("gn_only") { 625 group("gn_only") {
624 testonly = true 626 testonly = true
625 627
626 deps = [] 628 deps = []
627 629
628 if (!is_ios) { 630 if (!is_ios) {
629 deps += [ "//mandoline:all" ] 631 deps += [ "//mandoline:all" ]
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 if (target_cpu == "x86") { 867 if (target_cpu == "x86") {
866 deps += [ 868 deps += [
867 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 869 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009
868 ] 870 ]
869 } 871 }
870 } else { 872 } else {
871 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 873 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
872 } 874 }
873 } 875 }
874 } 876 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698