| 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. |
| 11 visibility = [ "//content/*" ] | 11 visibility = [ "//content/*" ] |
| 12 | 12 |
| 13 sources = rebase_path(content_renderer_gypi_values.private_renderer_sources, | 13 sources = rebase_path(content_renderer_gypi_values.private_renderer_sources, |
| 14 ".", "//content") | 14 ".", "//content") |
| 15 | 15 |
| 16 configs += [ | 16 configs += [ |
| 17 "//content:blink_headers_stub_config", | |
| 18 "//content:content_implementation", | 17 "//content:content_implementation", |
| 19 "//content:libjingle_stub_config", | 18 "//content:libjingle_stub_config", |
| 20 "//content:v8_stub_config", | 19 "//content:v8_stub_config", |
| 21 "//content:widevine_stub_config", | 20 "//content:widevine_stub_config", |
| 22 ] | 21 ] |
| 23 | 22 |
| 24 deps = [ | 23 deps = [ |
| 25 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but | 24 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but |
| 26 # those don't cross component boundaries. | 25 # those don't cross component boundaries. |
| 27 "//crypto:platform", | 26 "//crypto:platform", |
| 28 | 27 |
| 29 "//base/allocator", | 28 "//base/allocator", |
| 30 "//content:resources", | 29 "//content:resources", |
| 31 "//content/common:mojo_bindings", | 30 "//content/common:mojo_bindings", |
| 32 "//gin", | 31 "//gin", |
| 33 "//mojo/public/js/bindings", | 32 "//mojo/public/js/bindings", |
| 34 "//mojo/public/interfaces/service_provider", | 33 "//mojo/public/interfaces/service_provider", |
| 35 "//net", | 34 "//net", |
| 36 "//skia", | 35 "//skia", |
| 37 "//third_party/icu", | 36 "//third_party/icu", |
| 38 "//third_party/npapi", | 37 "//third_party/npapi", |
| 38 "//third_party/WebKit/public:blink_headers", |
| 39 "//ui/accessibility", | 39 "//ui/accessibility", |
| 40 "//ui/events:dom4_keycode_converter", | 40 "//ui/events:dom4_keycode_converter", |
| 41 "//ui/native_theme", | 41 "//ui/native_theme", |
| 42 "//ui/surface", | 42 "//ui/surface", |
| 43 # TODO(GYP) | 43 # TODO(GYP) |
| 44 #'../jingle/jingle.gyp:jingle_glue', | 44 #'../jingle/jingle.gyp:jingle_glue', |
| 45 #'../media/media.gyp:media', | 45 #'../media/media.gyp:media', |
| 46 #'../mojo/mojo.gyp:mojo_environment_chromium', | 46 #'../mojo/mojo.gyp:mojo_environment_chromium', |
| 47 #'../third_party/WebKit/public/blink.gyp:blink', | 47 #'../third_party/WebKit/public/blink.gyp:blink', |
| 48 #'../third_party/libjingle/libjingle.gyp:libjingle', | 48 #'../third_party/libjingle/libjingle.gyp:libjingle', |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 ".", "//content") | 173 ".", "//content") |
| 174 } | 174 } |
| 175 | 175 |
| 176 if (!enable_pepper_cdms) { | 176 if (!enable_pepper_cdms) { |
| 177 sources -= [ | 177 sources -= [ |
| 178 "renderer/media/crypto/ppapi_decryptor.cc", | 178 "renderer/media/crypto/ppapi_decryptor.cc", |
| 179 "renderer/media/crypto/ppapi_decryptor.h", | 179 "renderer/media/crypto/ppapi_decryptor.h", |
| 180 ] | 180 ] |
| 181 } | 181 } |
| 182 } | 182 } |
| OLD | NEW |