| 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 15 matching lines...) Expand all Loading... |
| 26 deps = [ | 26 deps = [ |
| 27 "//base:i18n", | 27 "//base:i18n", |
| 28 | 28 |
| 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 "//cc/surfaces:surface_id", | |
| 37 "//components/scheduler:scheduler", | 36 "//components/scheduler:scheduler", |
| 38 "//components/startup_metric_utils/common", | 37 "//components/startup_metric_utils/common", |
| 39 "//components/url_formatter", | 38 "//components/url_formatter", |
| 40 "//components/webusb", | 39 "//components/webusb", |
| 41 "//content:resources", | 40 "//content:resources", |
| 42 "//content/common:mojo_bindings", | 41 "//content/common:mojo_bindings", |
| 43 "//content/public/child:child_sources", | 42 "//content/public/child:child_sources", |
| 44 "//content/public/common:common_sources", | 43 "//content/public/common:common_sources", |
| 45 "//content/public/common:mojo_bindings", | 44 "//content/public/common:mojo_bindings", |
| 46 "//crypto:platform", | 45 "//crypto:platform", |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 } | 237 } |
| 239 | 238 |
| 240 if (use_seccomp_bpf) { | 239 if (use_seccomp_bpf) { |
| 241 defines += [ "USE_SECCOMP_BPF" ] | 240 defines += [ "USE_SECCOMP_BPF" ] |
| 242 } | 241 } |
| 243 | 242 |
| 244 if (use_ozone) { | 243 if (use_ozone) { |
| 245 deps += [ "//ui/ozone" ] | 244 deps += [ "//ui/ozone" ] |
| 246 } | 245 } |
| 247 } | 246 } |
| OLD | NEW |