| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 "api/usb/usb_device_resource.h", | 159 "api/usb/usb_device_resource.h", |
| 160 "api/usb_private/usb_private_api.cc", | 160 "api/usb_private/usb_private_api.cc", |
| 161 "api/usb_private/usb_private_api.h", | 161 "api/usb_private/usb_private_api.h", |
| 162 "api_activity_monitor.h", | 162 "api_activity_monitor.h", |
| 163 "app_sorting.h", | 163 "app_sorting.h", |
| 164 "app_window/app_delegate.h", | 164 "app_window/app_delegate.h", |
| 165 "app_window/app_web_contents_helper.cc", | 165 "app_window/app_web_contents_helper.cc", |
| 166 "app_window/app_web_contents_helper.h", | 166 "app_window/app_web_contents_helper.h", |
| 167 "app_window/app_window.cc", | 167 "app_window/app_window.cc", |
| 168 "app_window/app_window.h", | 168 "app_window/app_window.h", |
| 169 "app_window/app_window_contents.cc", |
| 170 "app_window/app_window_contents.h", |
| 169 "app_window/app_window_geometry_cache.cc", | 171 "app_window/app_window_geometry_cache.cc", |
| 170 "app_window/app_window_geometry_cache.h", | 172 "app_window/app_window_geometry_cache.h", |
| 171 "app_window/app_window_registry.cc", | 173 "app_window/app_window_registry.cc", |
| 172 "app_window/app_window_registry.h", | 174 "app_window/app_window_registry.h", |
| 173 "app_window/apps_client.cc", | 175 "app_window/apps_client.cc", |
| 174 "app_window/apps_client.h", | 176 "app_window/apps_client.h", |
| 175 "app_window/native_app_window.h", | 177 "app_window/native_app_window.h", |
| 176 "app_window/size_constraints.cc", | 178 "app_window/size_constraints.cc", |
| 177 "app_window/size_constraints.h", | 179 "app_window/size_constraints.h", |
| 178 "blacklist_state.h", | 180 "blacklist_state.h", |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 ] | 367 ] |
| 366 } | 368 } |
| 367 } | 369 } |
| 368 | 370 |
| 369 if (is_win) { | 371 if (is_win) { |
| 370 cflags = [ | 372 cflags = [ |
| 371 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 373 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 372 ] | 374 ] |
| 373 } | 375 } |
| 374 } | 376 } |
| OLD | NEW |