| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "//third_party/libjingle", | 50 "//third_party/libjingle", |
| 51 "//third_party/mojo/src/mojo/edk/js", | 51 "//third_party/mojo/src/mojo/edk/js", |
| 52 "//third_party/mojo/src/mojo/public/js", | 52 "//third_party/mojo/src/mojo/public/js", |
| 53 "//third_party/mojo/src/mojo/public/interfaces/application", | 53 "//third_party/mojo/src/mojo/public/interfaces/application", |
| 54 "//third_party/npapi", | 54 "//third_party/npapi", |
| 55 "//third_party/WebKit/public:blink", | 55 "//third_party/WebKit/public:blink", |
| 56 "//third_party/widevine/cdm:version_h", | 56 "//third_party/widevine/cdm:version_h", |
| 57 "//ui/accessibility", | 57 "//ui/accessibility", |
| 58 "//ui/base", | 58 "//ui/base", |
| 59 "//ui/events:events_base", | 59 "//ui/events:events_base", |
| 60 "//ui/events:dom4_keycode_converter", | 60 "//ui/events:dom_keycode_converter", |
| 61 "//ui/gl", | 61 "//ui/gl", |
| 62 "//ui/native_theme", | 62 "//ui/native_theme", |
| 63 "//ui/surface", | 63 "//ui/surface", |
| 64 "//v8", | 64 "//v8", |
| 65 ] | 65 ] |
| 66 | 66 |
| 67 if (is_mac) { | 67 if (is_mac) { |
| 68 sources -= [ | 68 sources -= [ |
| 69 "webscrollbarbehavior_impl_gtkoraura.cc", | 69 "webscrollbarbehavior_impl_gtkoraura.cc", |
| 70 "webscrollbarbehavior_impl_gtkoraura.h", | 70 "webscrollbarbehavior_impl_gtkoraura.h", |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 } | 195 } |
| 196 | 196 |
| 197 if (enable_media_mojo_renderer) { | 197 if (enable_media_mojo_renderer) { |
| 198 sources += [ | 198 sources += [ |
| 199 "media/media_renderer_service_provider.cc", | 199 "media/media_renderer_service_provider.cc", |
| 200 "media/media_renderer_service_provider.h", | 200 "media/media_renderer_service_provider.h", |
| 201 ] | 201 ] |
| 202 deps += [ "//media/mojo/services:renderer_proxy" ] | 202 deps += [ "//media/mojo/services:renderer_proxy" ] |
| 203 } | 203 } |
| 204 } | 204 } |
| OLD | NEW |