Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(563)

Side by Side Diff: content/renderer/BUILD.gn

Issue 524983002: Move fileapi-related files from webkit/common/ to storage/common/ and set up redirect headers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/content_tests.gypi ('k') | content/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 17 matching lines...) Expand all
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 "//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 "//storage/common",
38 "//third_party/icu", 39 "//third_party/icu",
39 "//third_party/libjingle", 40 "//third_party/libjingle",
40 "//third_party/npapi", 41 "//third_party/npapi",
41 "//third_party/WebKit/public:blink", 42 "//third_party/WebKit/public:blink",
42 "//third_party/widevine/cdm:version_h", 43 "//third_party/widevine/cdm:version_h",
43 "//ui/accessibility", 44 "//ui/accessibility",
44 "//ui/events:dom4_keycode_converter", 45 "//ui/events:dom4_keycode_converter",
45 "//ui/native_theme", 46 "//ui/native_theme",
46 "//ui/surface", 47 "//ui/surface",
47 "//v8", 48 "//v8",
48 "//webkit/child", 49 "//webkit/child",
49 "//webkit/common",
50 "//webkit/common:storage_common",
51 "//webkit/common/gpu", 50 "//webkit/common/gpu",
52 ] 51 ]
53 52
54 if (!enable_notifications) { 53 if (!enable_notifications) {
55 sources -= [ 54 sources -= [
56 "notification_provider.cc", 55 "notification_provider.cc",
57 "active_notification_tracker.cc", 56 "active_notification_tracker.cc",
58 ] 57 ]
59 } 58 }
60 59
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 if (enable_plugins && enable_webrtc) { 162 if (enable_plugins && enable_webrtc) {
164 sources += rebase_path( 163 sources += rebase_path(
165 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, 164 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources,
166 ".", "//content") 165 ".", "//content")
167 } 166 }
168 167
169 if (printing_mode == 1) { 168 if (printing_mode == 1) {
170 deps += [ "//printing" ] 169 deps += [ "//printing" ]
171 } 170 }
172 } 171 }
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698