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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 | 7 |
8 # GYP version: extensions/extensions.gyp:extensions_browser | 8 # GYP version: extensions/extensions.gyp:extensions_browser |
9 source_set("browser") { | 9 source_set("browser") { |
10 sources = [ | 10 sources = [ |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 "api/web_request/web_request_api_utils.h", | 216 "api/web_request/web_request_api_utils.h", |
217 "api/web_view/web_view_internal_api.cc", | 217 "api/web_view/web_view_internal_api.cc", |
218 "api/web_view/web_view_internal_api.h", | 218 "api/web_view/web_view_internal_api.h", |
219 "api_activity_monitor.h", | 219 "api_activity_monitor.h", |
220 "app_sorting.h", | 220 "app_sorting.h", |
221 "app_window/app_delegate.h", | 221 "app_window/app_delegate.h", |
222 "app_window/app_web_contents_helper.cc", | 222 "app_window/app_web_contents_helper.cc", |
223 "app_window/app_web_contents_helper.h", | 223 "app_window/app_web_contents_helper.h", |
224 "app_window/app_window.cc", | 224 "app_window/app_window.cc", |
225 "app_window/app_window.h", | 225 "app_window/app_window.h", |
| 226 "app_window/app_window_client.cc", |
| 227 "app_window/app_window_client.h", |
226 "app_window/app_window_contents.cc", | 228 "app_window/app_window_contents.cc", |
227 "app_window/app_window_contents.h", | 229 "app_window/app_window_contents.h", |
228 "app_window/app_window_geometry_cache.cc", | 230 "app_window/app_window_geometry_cache.cc", |
229 "app_window/app_window_geometry_cache.h", | 231 "app_window/app_window_geometry_cache.h", |
230 "app_window/app_window_registry.cc", | 232 "app_window/app_window_registry.cc", |
231 "app_window/app_window_registry.h", | 233 "app_window/app_window_registry.h", |
232 "app_window/apps_client.cc", | |
233 "app_window/apps_client.h", | |
234 "app_window/native_app_window.h", | 234 "app_window/native_app_window.h", |
235 "app_window/size_constraints.cc", | 235 "app_window/size_constraints.cc", |
236 "app_window/size_constraints.h", | 236 "app_window/size_constraints.h", |
237 "blacklist_state.h", | 237 "blacklist_state.h", |
238 "blob_holder.cc", | 238 "blob_holder.cc", |
239 "blob_holder.h", | 239 "blob_holder.h", |
240 "browser_context_keyed_api_factory.h", | 240 "browser_context_keyed_api_factory.h", |
241 "browser_context_keyed_service_factories.cc", | 241 "browser_context_keyed_service_factories.cc", |
242 "browser_context_keyed_service_factories.h", | 242 "browser_context_keyed_service_factories.h", |
243 "component_extension_resource_manager.h", | 243 "component_extension_resource_manager.h", |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 ] | 440 ] |
441 } | 441 } |
442 } | 442 } |
443 | 443 |
444 if (is_win) { | 444 if (is_win) { |
445 cflags = [ | 445 cflags = [ |
446 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 446 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
447 ] | 447 ] |
448 } | 448 } |
449 } | 449 } |
OLD | NEW |