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

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

Issue 2812013003: Fix some build deps for //extensions/browser/api/guest_view, //extensions/common, //extensions/rend… (Closed)
Patch Set: merge e/b/a/guest_view/**/BUILD.gn into e/b/a/BUILD.gn Created 3 years, 8 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 | « extensions/browser/api/guest_view/web_view/BUILD.gn ('k') | extensions/renderer/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/features.gni") 5 import("//build/config/features.gni")
6 import("//extensions/features/features.gni") 6 import("//extensions/features/features.gni")
7 import("//mojo/public/tools/bindings/mojom.gni") 7 import("//mojo/public/tools/bindings/mojom.gni")
8 8
9 source_set("common_constants") { 9 source_set("common_constants") {
10 sources = [ 10 sources = [
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 configs += [ 264 configs += [
265 "//build/config:precompiled_headers", 265 "//build/config:precompiled_headers",
266 266
267 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 267 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
268 "//build/config/compiler:no_size_t_to_int_warning", 268 "//build/config/compiler:no_size_t_to_int_warning",
269 ] 269 ]
270 270
271 public_deps = [ 271 public_deps = [
272 ":common_constants", 272 ":common_constants",
273 ":mojo", 273 ":mojo",
274 "//content/public/common",
274 "//ipc", 275 "//ipc",
275 "//skia", 276 "//skia",
276 ] 277 ]
277 278
278 deps = [ 279 deps = [
279 "//base", 280 "//base",
280 281
281 # TODO(benwells): figure out what to do with the api target and 282 # TODO(benwells): figure out what to do with the api target and
282 # api resources compiled into the chrome resource bundle. 283 # api resources compiled into the chrome resource bundle.
283 # http://crbug.com/162530 284 # http://crbug.com/162530
284 "//chrome:resources", 285 "//chrome:resources",
285 "//components/crx_file", 286 "//components/crx_file",
286 "//components/url_matcher", 287 "//components/url_matcher",
287 "//content/public/common",
288 "//crypto", 288 "//crypto",
289 "//device/bluetooth", 289 "//device/bluetooth",
290 "//device/usb", 290 "//device/usb",
291 "//extensions:extensions_resources", 291 "//extensions:extensions_resources",
292 "//extensions/common/api", 292 "//extensions/common/api",
293 "//extensions/strings", 293 "//extensions/strings",
294 "//net", 294 "//net",
295 "//third_party/boringssl", 295 "//third_party/boringssl",
296 "//third_party/icu", 296 "//third_party/icu",
297 "//third_party/libxml", 297 "//third_party/libxml",
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 "//ui/base", 384 "//ui/base",
385 "//ui/gfx", 385 "//ui/gfx",
386 "//url", 386 "//url",
387 ] 387 ]
388 388
389 if (is_chromeos) { 389 if (is_chromeos) {
390 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] 390 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ]
391 } 391 }
392 } 392 }
393 } # enable_extensions 393 } # enable_extensions
OLDNEW
« no previous file with comments | « extensions/browser/api/guest_view/web_view/BUILD.gn ('k') | extensions/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698