| 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 11 matching lines...) Expand all Loading... |
| 22 # those don't cross component boundaries. | 22 # those don't cross component boundaries. |
| 23 "//crypto:platform", | 23 "//crypto:platform", |
| 24 | 24 |
| 25 "//base/allocator", | 25 "//base/allocator", |
| 26 "//cc/blink", | 26 "//cc/blink", |
| 27 "//content:resources", | 27 "//content:resources", |
| 28 "//content/common:mojo_bindings", | 28 "//content/common:mojo_bindings", |
| 29 "//gin", | 29 "//gin", |
| 30 "//jingle:jingle_glue", | 30 "//jingle:jingle_glue", |
| 31 "//media", | 31 "//media", |
| 32 "//media/blink", |
| 32 "//mojo/bindings/js", | 33 "//mojo/bindings/js", |
| 33 "//mojo/environment:chromium", | 34 "//mojo/environment:chromium", |
| 34 "//mojo/public/js/bindings", | 35 "//mojo/public/js/bindings", |
| 35 "//mojo/public/interfaces/application", | 36 "//mojo/public/interfaces/application", |
| 36 "//net", | 37 "//net", |
| 37 "//skia", | 38 "//skia", |
| 38 "//storage/common", | 39 "//storage/common", |
| 39 "//third_party/icu", | 40 "//third_party/icu", |
| 40 "//third_party/libjingle", | 41 "//third_party/libjingle", |
| 41 "//third_party/npapi", | 42 "//third_party/npapi", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 64 sources += [ | 65 sources += [ |
| 65 "external_popup_menu.cc", | 66 "external_popup_menu.cc", |
| 66 "external_popup_menu.h", | 67 "external_popup_menu.h", |
| 67 ] | 68 ] |
| 68 } | 69 } |
| 69 | 70 |
| 70 if (is_android) { | 71 if (is_android) { |
| 71 sources -= [ | 72 sources -= [ |
| 72 "accessibility/renderer_accessibility_focus_only.cc", | 73 "accessibility/renderer_accessibility_focus_only.cc", |
| 73 "media/audio_decoder.cc", | 74 "media/audio_decoder.cc", |
| 74 "media/webmediaplayer_impl.cc", | |
| 75 ] | 75 ] |
| 76 sources += [ | 76 sources += [ |
| 77 "external_popup_menu.cc", | 77 "external_popup_menu.cc", |
| 78 "external_popup_menu.h", | 78 "external_popup_menu.h", |
| 79 ] | 79 ] |
| 80 | 80 |
| 81 # Add back the Linux file which Android shares. | 81 # Add back the Linux file which Android shares. |
| 82 set_sources_assignment_filter([]) | 82 set_sources_assignment_filter([]) |
| 83 sources += [ | 83 sources += [ |
| 84 "render_view_linux.cc", | 84 "render_view_linux.cc", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 if (enable_plugins && enable_webrtc) { | 161 if (enable_plugins && enable_webrtc) { |
| 162 sources += rebase_path( | 162 sources += rebase_path( |
| 163 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, | 163 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, |
| 164 ".", "//content") | 164 ".", "//content") |
| 165 } | 165 } |
| 166 | 166 |
| 167 if (printing_mode == 1) { | 167 if (printing_mode == 1) { |
| 168 deps += [ "//printing" ] | 168 deps += [ "//printing" ] |
| 169 } | 169 } |
| 170 } | 170 } |
| OLD | NEW |