| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "api/storage/weak_unlimited_settings_storage.cc", | 119 "api/storage/weak_unlimited_settings_storage.cc", |
| 120 "api/storage/weak_unlimited_settings_storage.h", | 120 "api/storage/weak_unlimited_settings_storage.h", |
| 121 "api/test/test_api.cc", | 121 "api/test/test_api.cc", |
| 122 "api/test/test_api.h", | 122 "api/test/test_api.h", |
| 123 "api/usb/usb_api.cc", | 123 "api/usb/usb_api.cc", |
| 124 "api/usb/usb_api.h", | 124 "api/usb/usb_api.h", |
| 125 "api/usb/usb_device_resource.cc", | 125 "api/usb/usb_device_resource.cc", |
| 126 "api/usb/usb_device_resource.h", | 126 "api/usb/usb_device_resource.h", |
| 127 "api_activity_monitor.h", | 127 "api_activity_monitor.h", |
| 128 "app_sorting.h", | 128 "app_sorting.h", |
| 129 "app_window/app_delegate.h", |
| 130 "app_window/app_web_contents_helper.cc", |
| 131 "app_window/app_web_contents_helper.h", |
| 132 "app_window/app_window_geometry_cache.cc", |
| 133 "app_window/app_window_geometry_cache.h", |
| 129 "app_window/native_app_window.h", | 134 "app_window/native_app_window.h", |
| 130 "app_window/size_constraints.cc", | 135 "app_window/size_constraints.cc", |
| 131 "app_window/size_constraints.h", | 136 "app_window/size_constraints.h", |
| 132 "blacklist_state.h", | 137 "blacklist_state.h", |
| 133 "blob_holder.cc", | 138 "blob_holder.cc", |
| 134 "blob_holder.h", | 139 "blob_holder.h", |
| 135 "browser_context_keyed_api_factory.h", | 140 "browser_context_keyed_api_factory.h", |
| 136 "browser_context_keyed_service_factories.cc", | 141 "browser_context_keyed_service_factories.cc", |
| 137 "browser_context_keyed_service_factories.h", | 142 "browser_context_keyed_service_factories.h", |
| 138 "component_extension_resource_manager.h", | 143 "component_extension_resource_manager.h", |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 ] | 290 ] |
| 286 } | 291 } |
| 287 } | 292 } |
| 288 | 293 |
| 289 if (is_win) { | 294 if (is_win) { |
| 290 cflags = [ | 295 cflags = [ |
| 291 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 296 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 292 ] | 297 ] |
| 293 } | 298 } |
| 294 } | 299 } |
| OLD | NEW |