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

Side by Side Diff: BUILD.gn

Issue 1250913002: patch from chinmaygarde@ to make progress on mac, ios. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: status Created 5 years, 4 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 | base/BUILD.gn » ('j') | base/BUILD.gn » ('J')
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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 # The "both_gn_and_gyp" target should reflect every target that is built 59 # The "both_gn_and_gyp" target should reflect every target that is built
60 # in both the GN and GYP builds, and ideally it should match the 60 # in both the GN and GYP builds, and ideally it should match the
61 # "both_gn_and_gyp" target in build/gn_migration.gypi line-for-line. 61 # "both_gn_and_gyp" target in build/gn_migration.gypi line-for-line.
62 # 62 #
63 # TODO(GYP): Add build steps that check and enforce this on the bots. 63 # TODO(GYP): Add build steps that check and enforce this on the bots.
64 group("both_gn_and_gyp") { 64 group("both_gn_and_gyp") {
65 testonly = true 65 testonly = true
66 deps = [ 66 deps = [
67 "//base:base_unittests", 67 "//base:base_unittests",
68 "//sync:sync_unit_tests",
69 ] 68 ]
69
70 if (!is_ios) { 70 if (!is_ios) {
71 # TODO(GYP): Figure out which of these should actually build on iOS,
72 # and whether there should be other targets that are iOS-only and missing.
71 deps += [ 73 deps += [
72 "//cc:cc_unittests", 74 "//cc:cc_unittests",
73 "//chrome", 75 "//chrome",
74 "//chrome/test:browser_tests", 76 "//chrome/test:browser_tests",
75 "//chrome/test:interactive_ui_tests", 77 "//chrome/test:interactive_ui_tests",
76 "//chrome/test:sync_integration_tests", 78 "//chrome/test:sync_integration_tests",
77 "//chrome/test:unit_tests", 79 "//chrome/test:unit_tests",
78 "//chrome/test/chromedriver:chromedriver_unittests", 80 "//chrome/test/chromedriver:chromedriver_unittests",
79 "//components:components_browsertests", 81 "//components:components_browsertests",
80 "//components:components_unittests", 82 "//components:components_unittests",
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 "//ppapi/examples/stub", 129 "//ppapi/examples/stub",
128 "//ppapi/examples/threading", 130 "//ppapi/examples/threading",
129 "//ppapi/examples/url_loader", 131 "//ppapi/examples/url_loader",
130 "//ppapi/examples/video_capture", 132 "//ppapi/examples/video_capture",
131 "//ppapi/examples/video_decode", 133 "//ppapi/examples/video_decode",
132 "//ppapi/examples/video_effects", 134 "//ppapi/examples/video_effects",
133 "//ppapi/examples/video_encode", 135 "//ppapi/examples/video_encode",
134 "//printing:printing_unittests", 136 "//printing:printing_unittests",
135 "//skia:skia_unittests", 137 "//skia:skia_unittests",
136 "//sql:sql_unittests", 138 "//sql:sql_unittests",
139 "//sync:sync_unit_tests",
137 "//third_party/WebKit/Source/platform:heap_unittests", 140 "//third_party/WebKit/Source/platform:heap_unittests",
138 "//third_party/WebKit/Source/platform:platform_unittests", 141 "//third_party/WebKit/Source/platform:platform_unittests",
139 "//third_party/WebKit/Source/web:webkit_unit_tests", 142 "//third_party/WebKit/Source/web:webkit_unit_tests",
140 "//third_party/WebKit/Source/wtf:wtf_unittests", 143 "//third_party/WebKit/Source/wtf:wtf_unittests",
141 "//third_party/cacheinvalidation:cacheinvalidation_unittests", 144 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
142 "//third_party/codesighs", 145 "//third_party/codesighs",
143 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", 146 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests",
144 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", 147 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests",
145 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests", 148 "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unittests",
146 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests", 149 "//third_party/mojo/src/mojo/edk/test:mojo_public_system_unittests",
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 } 595 }
593 596
594 if (!is_ios) { 597 if (!is_ios) {
595 deps += [ "//gpu/skia_runner:skia_runner" ] 598 deps += [ "//gpu/skia_runner:skia_runner" ]
596 } 599 }
597 } 600 }
598 601
599 group("gn_only") { 602 group("gn_only") {
600 testonly = true 603 testonly = true
601 604
605 deps = []
606
602 if (!is_ios) { 607 if (!is_ios) {
603 deps = [ 608 deps += [ "//mandoline:all" ]
604 "//mandoline:all",
605 ]
606 } 609 }
607 610
608 if (!is_android && !is_ios) { 611 if (!is_android && !is_ios) {
609 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] 612 deps += [ "//components/proximity_auth:proximity_auth_unittests" ]
610 } 613 }
611 614
612 if (is_linux && !is_chromeos) { 615 if (is_linux && !is_chromeos) {
613 # TODO(GYP): Figure out if any of these should be in gn_all 616 # TODO(GYP): Figure out if any of these should be in gn_all
614 # and figure out how cross-platform they are 617 # and figure out how cross-platform they are
615 deps += [ 618 deps += [
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
930 "//ui/views:views_unittests", # TooltipControllerTest failures 933 "//ui/views:views_unittests", # TooltipControllerTest failures
931 "//ui/wm:wm_unittests", # PASSES 4/21/2015 934 "//ui/wm:wm_unittests", # PASSES 4/21/2015
932 "//url:url_unittests", # PASSES 4/17/2015 935 "//url:url_unittests", # PASSES 4/17/2015
933 936
934 # TODO(GYP) nacl_integration 937 # TODO(GYP) nacl_integration
935 # TODO(GYP) telemetry_perf_unittests 938 # TODO(GYP) telemetry_perf_unittests
936 # TODO(GYP) telemetry_unittests 939 # TODO(GYP) telemetry_unittests
937 ] 940 ]
938 } 941 }
939 } 942 }
OLDNEW
« no previous file with comments | « no previous file | base/BUILD.gn » ('j') | base/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698