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 18 matching lines...) Expand all Loading... |
29 "//gin", | 29 "//gin", |
30 "//jingle:jingle_glue", | 30 "//jingle:jingle_glue", |
31 "//media", | 31 "//media", |
32 "//mojo/bindings/js", | 32 "//mojo/bindings/js", |
33 "//mojo/environment:chromium", | 33 "//mojo/environment:chromium", |
34 "//mojo/public/js/bindings", | 34 "//mojo/public/js/bindings", |
35 "//mojo/public/interfaces/application", | 35 "//mojo/public/interfaces/application", |
36 "//net", | 36 "//net", |
37 "//skia", | 37 "//skia", |
38 "//third_party/icu", | 38 "//third_party/icu", |
| 39 "//third_party/libjingle", |
39 "//third_party/npapi", | 40 "//third_party/npapi", |
40 "//third_party/WebKit/public:blink", | 41 "//third_party/WebKit/public:blink", |
41 "//third_party/widevine/cdm:version_h", | 42 "//third_party/widevine/cdm:version_h", |
42 "//ui/accessibility", | 43 "//ui/accessibility", |
43 "//ui/events:dom4_keycode_converter", | 44 "//ui/events:dom4_keycode_converter", |
44 "//ui/native_theme", | 45 "//ui/native_theme", |
45 "//ui/surface", | 46 "//ui/surface", |
46 "//v8", | 47 "//v8", |
47 "//webkit/child", | 48 "//webkit/child", |
48 "//webkit/common", | 49 "//webkit/common", |
49 "//webkit/common:storage", | 50 "//webkit/common:storage", |
50 "//webkit/common/gpu", | 51 "//webkit/common/gpu", |
51 #'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP) | |
52 ] | 52 ] |
53 | 53 |
54 if (!enable_notifications) { | 54 if (!enable_notifications) { |
55 sources -= [ | 55 sources -= [ |
56 "notification_provider.cc", | 56 "notification_provider.cc", |
57 "active_notification_tracker.cc", | 57 "active_notification_tracker.cc", |
58 ] | 58 ] |
59 } | 59 } |
60 | 60 |
61 if (is_mac) { | 61 if (is_mac) { |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 ] | 159 ] |
160 } | 160 } |
161 } | 161 } |
162 | 162 |
163 if (enable_plugins && enable_webrtc) { | 163 if (enable_plugins && enable_webrtc) { |
164 sources += rebase_path( | 164 sources += rebase_path( |
165 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, | 165 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, |
166 ".", "//content") | 166 ".", "//content") |
167 } | 167 } |
168 } | 168 } |
OLD | NEW |