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

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

Issue 1624573004: Rename webusb_permission_bubble.mojom and move it to //content/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added content_common_mojo_bindings dep back to chrome_browser.gypi Created 4 years, 10 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
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/renderer/renderer.gni") 7 import("//content/renderer/renderer.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 9
10 source_set("renderer") { 10 source_set("renderer") {
(...skipping 18 matching lines...) Expand all
29 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but 29 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but
30 # those don't cross component boundaries. 30 # those don't cross component boundaries.
31 "//base/allocator", 31 "//base/allocator",
32 "//cc", 32 "//cc",
33 "//cc/blink", 33 "//cc/blink",
34 "//cc/proto", 34 "//cc/proto",
35 "//cc/surfaces", 35 "//cc/surfaces",
36 "//components/scheduler:scheduler", 36 "//components/scheduler:scheduler",
37 "//components/startup_metric_utils/common", 37 "//components/startup_metric_utils/common",
38 "//components/url_formatter", 38 "//components/url_formatter",
39 "//components/webusb",
40 "//content:resources", 39 "//content:resources",
41 "//content/common:mojo_bindings", 40 "//content/common:mojo_bindings",
42 "//content/public/child:child_sources", 41 "//content/public/child:child_sources",
43 "//content/public/common:common_sources", 42 "//content/public/common:common_sources",
44 "//content/public/common:mojo_bindings", 43 "//content/public/common:mojo_bindings",
45 "//crypto:platform", 44 "//crypto:platform",
46 "//device/battery:mojo_bindings", 45 "//device/battery:mojo_bindings",
47 "//device/bluetooth", 46 "//device/bluetooth",
48 "//device/devices_app/public/cpp", 47 "//device/devices_app/public/cpp",
49 "//device/devices_app/usb/public/interfaces", 48 "//device/devices_app/usb/public/interfaces",
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 } 236 }
238 237
239 if (use_seccomp_bpf) { 238 if (use_seccomp_bpf) {
240 defines += [ "USE_SECCOMP_BPF" ] 239 defines += [ "USE_SECCOMP_BPF" ]
241 } 240 }
242 241
243 if (use_ozone) { 242 if (use_ozone) {
244 deps += [ "//ui/ozone" ] 243 deps += [ "//ui/ozone" ]
245 } 244 }
246 } 245 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698