OLD | NEW |
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 13 matching lines...) Expand all Loading... |
24 defines = [] | 24 defines = [] |
25 | 25 |
26 deps = [ | 26 deps = [ |
27 "//base:i18n", | 27 "//base:i18n", |
28 "//cc", | 28 "//cc", |
29 "//cc/blink", | 29 "//cc/blink", |
30 "//cc/proto", | 30 "//cc/proto", |
31 "//cc/surfaces", | 31 "//cc/surfaces", |
32 "//cc/surfaces:surface_id", | 32 "//cc/surfaces:surface_id", |
33 "//components/scheduler:scheduler", | 33 "//components/scheduler:scheduler", |
34 "//components/startup_metric_utils/common", | |
35 "//components/url_formatter", | 34 "//components/url_formatter", |
36 "//components/webusb", | 35 "//components/webusb", |
37 "//content:resources", | 36 "//content:resources", |
38 "//content/common:mojo_bindings", | 37 "//content/common:mojo_bindings", |
39 "//content/public/child:child_sources", | 38 "//content/public/child:child_sources", |
40 "//content/public/common:common_sources", | 39 "//content/public/common:common_sources", |
41 "//content/public/common:mojo_bindings", | 40 "//content/public/common:mojo_bindings", |
42 "//crypto:platform", | 41 "//crypto:platform", |
43 "//device/battery:mojo_bindings", | 42 "//device/battery:mojo_bindings", |
44 "//device/bluetooth", | 43 "//device/bluetooth", |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 } | 233 } |
235 | 234 |
236 if (use_seccomp_bpf) { | 235 if (use_seccomp_bpf) { |
237 defines += [ "USE_SECCOMP_BPF" ] | 236 defines += [ "USE_SECCOMP_BPF" ] |
238 } | 237 } |
239 | 238 |
240 if (use_ozone) { | 239 if (use_ozone) { |
241 deps += [ "//ui/ozone" ] | 240 deps += [ "//ui/ozone" ] |
242 } | 241 } |
243 } | 242 } |
OLD | NEW |