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

Side by Side Diff: content/common/BUILD.gn

Issue 1817323002: Make most of content/common pass gn check (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | content/content_common.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 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/common/common.gni") 7 import("//content/common/common.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 if (is_mac) { 10 if (is_mac) {
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 ] 141 ]
142 142
143 public_deps = [ 143 public_deps = [
144 ":mojo_bindings", 144 ":mojo_bindings",
145 "//gpu/command_buffer/common", 145 "//gpu/command_buffer/common",
146 "//ipc", 146 "//ipc",
147 "//third_party/WebKit/public:blink_headers", 147 "//third_party/WebKit/public:blink_headers",
148 ] 148 ]
149 deps = [ 149 deps = [
150 "//base", 150 "//base",
151 "//base/third_party/dynamic_annotations",
151 "//build/util:webkit_version", 152 "//build/util:webkit_version",
152 "//cc", 153 "//cc",
154 "//cc/blink",
155 "//cc/surfaces",
153 "//components/mus/public/interfaces", 156 "//components/mus/public/interfaces",
154 "//components/tracing", 157 "//components/tracing",
155 "//components/tracing:startup_tracing", 158 "//components/tracing:startup_tracing",
156 "//device/bluetooth", 159 "//device/bluetooth",
157 160
158 # TODO: the dependency on gl_in_process_context should be decoupled from 161 # TODO: the dependency on gl_in_process_context should be decoupled from
159 # content and moved to android_webview. See crbug.com/365797. 162 # content and moved to android_webview. See crbug.com/365797.
163 "//gpu",
160 "//gpu/blink", 164 "//gpu/blink",
161 "//gpu/command_buffer/client:gl_in_process_context", 165 "//gpu/command_buffer/client:gl_in_process_context",
162 "//gpu/command_buffer/client:gles2_c_lib", 166 "//gpu/command_buffer/client:gles2_c_lib",
163 "//gpu/command_buffer/client:gles2_cmd_helper", 167 "//gpu/command_buffer/client:gles2_cmd_helper",
164 "//gpu/command_buffer/client:gles2_implementation", 168 "//gpu/command_buffer/client:gles2_implementation",
165 "//gpu/command_buffer/client:gles2_interface", 169 "//gpu/command_buffer/client:gles2_interface",
166 "//gpu/command_buffer/common:gles2_utils", 170 "//gpu/command_buffer/common:gles2_utils",
167 "//gpu/command_buffer/service", 171 "//gpu/command_buffer/service",
168 "//gpu/ipc/common", 172 "//gpu/ipc/common",
169 "//gpu/skia_bindings", 173 "//gpu/skia_bindings",
170 "//ipc", 174 "//ipc",
171 "//ipc/mojo", 175 "//ipc/mojo",
172 "//media", 176 "//media",
173 "//media:shared_memory_support", 177 "//media:shared_memory_support",
174 "//media/midi", 178 "//media/midi",
175 "//mojo/common:common_base", 179 "//mojo/common:common_base",
176 "//mojo/converters/network", 180 "//mojo/converters/network",
177 "//mojo/edk/system", 181 "//mojo/edk/system",
182 "//mojo/shell",
178 "//mojo/shell/public/cpp", 183 "//mojo/shell/public/cpp",
179 "//mojo/shell/public/interfaces", 184 "//mojo/shell/public/interfaces",
180 "//mojo/shell/runner/common", 185 "//mojo/shell/runner/common",
181 "//net", 186 "//net",
182 "//sandbox", 187 "//sandbox",
183 "//skia", 188 "//skia",
184 "//storage/common", 189 "//storage/common",
185 "//third_party/WebKit/public:blink", 190 "//third_party/WebKit/public:blink",
186 "//third_party/boringssl", 191 "//third_party/boringssl",
187 "//third_party/icu", 192 "//third_party/icu",
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 public_deps = [ 543 public_deps = [
539 "//components/leveldb/public/interfaces", 544 "//components/leveldb/public/interfaces",
540 "//components/mus/public/interfaces", 545 "//components/mus/public/interfaces",
541 "//content/public/common:mojo_bindings", 546 "//content/public/common:mojo_bindings",
542 "//mojo/shell/public/interfaces", 547 "//mojo/shell/public/interfaces",
543 "//skia/public/interfaces", 548 "//skia/public/interfaces",
544 "//third_party/WebKit/public:mojo_bindings", 549 "//third_party/WebKit/public:mojo_bindings",
545 "//ui/mojo/geometry:interfaces", 550 "//ui/mojo/geometry:interfaces",
546 ] 551 ]
547 } 552 }
OLDNEW
« no previous file with comments | « no previous file | content/content_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698