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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 "//storage/common", | 74 "//storage/common", |
75 "//third_party/WebKit/public:blink", | 75 "//third_party/WebKit/public:blink", |
76 "//third_party/boringssl", | 76 "//third_party/boringssl", |
77 "//third_party/icu", | 77 "//third_party/icu", |
78 "//third_party/libjingle", | 78 "//third_party/libjingle", |
79 "//third_party/libyuv", | 79 "//third_party/libyuv", |
80 "//third_party/widevine/cdm:version_h", | 80 "//third_party/widevine/cdm:version_h", |
81 "//ui/accessibility", | 81 "//ui/accessibility", |
82 "//ui/base", | 82 "//ui/base", |
83 "//ui/base/ime", | 83 "//ui/base/ime", |
| 84 "//ui/display", |
84 "//ui/events:dom_keycode_converter", | 85 "//ui/events:dom_keycode_converter", |
85 "//ui/events:events_base", | 86 "//ui/events:events_base", |
86 "//ui/events/blink", | 87 "//ui/events/blink", |
87 "//ui/gl", | 88 "//ui/gl", |
88 "//ui/native_theme", | 89 "//ui/native_theme", |
89 "//ui/surface", | 90 "//ui/surface", |
90 "//v8", | 91 "//v8", |
91 ] | 92 ] |
92 allow_circular_includes_from = [] | 93 allow_circular_includes_from = [] |
93 | 94 |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 # For the defines in mojo_media_config. | 263 # For the defines in mojo_media_config. |
263 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 264 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
264 } | 265 } |
265 | 266 |
266 if (!is_component_build) { | 267 if (!is_component_build) { |
267 public_deps = [ | 268 public_deps = [ |
268 ":renderer", | 269 ":renderer", |
269 ] | 270 ] |
270 } | 271 } |
271 } | 272 } |
OLD | NEW |