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

Side by Side Diff: Source/platform/BUILD.gn

Issue 1351203002: Make deps of GN groups public. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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 | « Source/modules/BUILD.gn ('k') | public/BUILD.gn » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 7 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
8 import("//third_party/WebKit/Source/config.gni") 8 import("//third_party/WebKit/Source/config.gni")
9 import("//third_party/WebKit/Source/platform/platform.gni") 9 import("//third_party/WebKit/Source/platform/platform.gni")
10 import("//third_party/WebKit/Source/platform/platform_generated.gni") 10 import("//third_party/WebKit/Source/platform/platform_generated.gni")
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 rebase_path(color_data_gperf, root_build_dir), 149 rebase_path(color_data_gperf, root_build_dir),
150 "--output-file=" + rebase_path(output_file, root_build_dir), 150 "--output-file=" + rebase_path(output_file, root_build_dir),
151 ] 151 ]
152 } 152 }
153 153
154 # This isn't strictly necessary since we can just add the deps to "platform", 154 # This isn't strictly necessary since we can just add the deps to "platform",
155 # but it helps to have the targets match the GYP build. 155 # but it helps to have the targets match the GYP build.
156 group("make_platform_generated") { 156 group("make_platform_generated") {
157 visibility = [] # Allow re-assignment of list. 157 visibility = [] # Allow re-assignment of list.
158 visibility = [ "//third_party/WebKit/Source/*" ] 158 visibility = [ "//third_party/WebKit/Source/*" ]
159 deps = [ 159 public_deps = [
160 ":blink_common", 160 ":blink_common",
161 ":color_data", 161 ":color_data",
162 ":font_family_names", 162 ":font_family_names",
163 ":runtime_enabled_features", 163 ":runtime_enabled_features",
164 ] 164 ]
165 } 165 }
166 166
167 # TODO(brettw) Objective C Renaming postbuild steps on Mac. 167 # TODO(brettw) Objective C Renaming postbuild steps on Mac.
168 # blink_platform target in blink_platform.gyp 168 # blink_platform target in blink_platform.gyp
169 component("platform") { 169 component("platform") {
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 } 426 }
427 } 427 }
428 428
429 429
430 if (current_cpu == "x86" || current_cpu == "x64") { 430 if (current_cpu == "x86" || current_cpu == "x64") {
431 source_set("blink_x86_sse") { 431 source_set("blink_x86_sse") {
432 sources = blink_platform_sse_files 432 sources = blink_platform_sse_files
433 deps = [ ":blink_common" ] 433 deps = [ ":blink_common" ]
434 } 434 }
435 } 435 }
OLDNEW
« no previous file with comments | « Source/modules/BUILD.gn ('k') | public/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698