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 | 8 |
9 source_set("renderer") { | 9 source_set("renderer") { |
10 # Only targets in the content tree can depend directly on this target. | 10 # Only targets in the content tree can depend directly on this target. |
(...skipping 30 matching lines...) Expand all Loading... |
41 "//third_party/npapi", | 41 "//third_party/npapi", |
42 "//third_party/WebKit/public:blink", | 42 "//third_party/WebKit/public:blink", |
43 "//third_party/widevine/cdm:version_h", | 43 "//third_party/widevine/cdm:version_h", |
44 "//ui/accessibility", | 44 "//ui/accessibility", |
45 "//ui/events:dom4_keycode_converter", | 45 "//ui/events:dom4_keycode_converter", |
46 "//ui/native_theme", | 46 "//ui/native_theme", |
47 "//ui/surface", | 47 "//ui/surface", |
48 "//v8", | 48 "//v8", |
49 "//webkit/child", | 49 "//webkit/child", |
50 "//webkit/common", | 50 "//webkit/common", |
51 "//webkit/common:storage", | 51 "//webkit/common:storage_common", |
52 "//webkit/common/gpu", | 52 "//webkit/common/gpu", |
53 ] | 53 ] |
54 | 54 |
55 if (!enable_notifications) { | 55 if (!enable_notifications) { |
56 sources -= [ | 56 sources -= [ |
57 "notification_provider.cc", | 57 "notification_provider.cc", |
58 "active_notification_tracker.cc", | 58 "active_notification_tracker.cc", |
59 ] | 59 ] |
60 } | 60 } |
61 | 61 |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 if (enable_plugins && enable_webrtc) { | 164 if (enable_plugins && enable_webrtc) { |
165 sources += rebase_path( | 165 sources += rebase_path( |
166 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, | 166 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, |
167 ".", "//content") | 167 ".", "//content") |
168 } | 168 } |
169 | 169 |
170 if (printing_mode == 1) { | 170 if (printing_mode == 1) { |
171 deps += [ "//printing" ] | 171 deps += [ "//printing" ] |
172 } | 172 } |
173 } | 173 } |
OLD | NEW |