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/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
8 | 8 |
9 config("storage_config") { | 9 config("storage_config") { |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", | 83 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", |
84 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", | 84 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", |
85 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.cc", | 85 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.cc", |
86 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.h", | 86 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.h", |
87 ], ".") | 87 ], ".") |
88 | 88 |
89 # Non-iOS deps. | 89 # Non-iOS deps. |
90 deps += [ | 90 deps += [ |
91 "//cc", | 91 "//cc", |
92 "//cc/surfaces", | 92 "//cc/surfaces", |
| 93 "//content/app/resources", |
93 "//content/app/strings", | 94 "//content/app/strings", |
94 "//content/browser/devtools:resources", | 95 "//content/browser/devtools:resources", |
95 "//content/common:mojo_bindings", | 96 "//content/common:mojo_bindings", |
96 "//mojo/public/cpp/bindings", | 97 "//mojo/public/cpp/bindings", |
97 "//mojo/public/interfaces/application", | 98 "//mojo/public/interfaces/application", |
98 "//mojo/public/js/bindings", | 99 "//mojo/public/js/bindings", |
99 "//net:http_server", | 100 "//net:http_server", |
100 "//third_party/WebKit/public:resources", | 101 "//third_party/WebKit/public:resources", |
101 "//third_party/angle:commit_id", | 102 "//third_party/angle:commit_id", |
102 "//third_party/icu", | 103 "//third_party/icu", |
103 "//third_party/leveldatabase", | 104 "//third_party/leveldatabase", |
104 "//third_party/libyuv", | 105 "//third_party/libyuv", |
105 "//ui/resources", | 106 "//ui/resources", |
106 "//ui/surface", | 107 "//ui/surface", |
107 "//webkit/browser:storage", | 108 "//webkit/browser:storage", |
108 "//webkit/common", | 109 "//webkit/common", |
109 "//webkit/common:storage", | 110 "//webkit/common:storage", |
110 "//webkit/glue/resources", | |
111 ] | 111 ] |
112 } | 112 } |
113 | 113 |
114 configs += [ | 114 configs += [ |
115 "//content:content_implementation", | 115 "//content:content_implementation", |
116 "//content:libjingle_stub_config", # TODO(GYP) remove when libjingle is rea
dy. | 116 "//content:libjingle_stub_config", # TODO(GYP) remove when libjingle is rea
dy. |
117 "//content:webrtc_stub_config", # TODO(GYP) remove when webrtc is ready. | 117 "//content:webrtc_stub_config", # TODO(GYP) remove when webrtc is ready. |
118 ] | 118 ] |
119 | 119 |
120 if (toolkit_views) { | 120 if (toolkit_views) { |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
408 deps += [ "//dbus" ] | 408 deps += [ "//dbus" ] |
409 } else { | 409 } else { |
410 # This will already have gotten removed for all non-Linux cases. | 410 # This will already have gotten removed for all non-Linux cases. |
411 sources -= [ | 411 sources -= [ |
412 "battery_status/battery_status_manager_linux.cc", | 412 "battery_status/battery_status_manager_linux.cc", |
413 "geolocation/wifi_data_provider_linux.cc", | 413 "geolocation/wifi_data_provider_linux.cc", |
414 ] | 414 ] |
415 } | 415 } |
416 } | 416 } |
417 } | 417 } |
OLD | NEW |