| 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 23 matching lines...) Expand all Loading... |
| 34 sources += [ | 34 sources += [ |
| 35 "admin_policy.cc", | 35 "admin_policy.cc", |
| 36 "admin_policy.h", | 36 "admin_policy.h", |
| 37 "api/api_resource.cc", | 37 "api/api_resource.cc", |
| 38 "api/api_resource.h", | 38 "api/api_resource.h", |
| 39 "api/api_resource_manager.h", | 39 "api/api_resource_manager.h", |
| 40 "api/app_runtime/app_runtime_api.cc", | 40 "api/app_runtime/app_runtime_api.cc", |
| 41 "api/app_runtime/app_runtime_api.h", | 41 "api/app_runtime/app_runtime_api.h", |
| 42 "api/app_view/app_view_internal_api.cc", | 42 "api/app_view/app_view_internal_api.cc", |
| 43 "api/app_view/app_view_internal_api.h", | 43 "api/app_view/app_view_internal_api.h", |
| 44 "api/app_window/app_window_api.cc", |
| 45 "api/app_window/app_window_api.h", |
| 44 "api/guest_view/guest_view_internal_api.cc", | 46 "api/guest_view/guest_view_internal_api.cc", |
| 45 "api/guest_view/guest_view_internal_api.h", | 47 "api/guest_view/guest_view_internal_api.h", |
| 46 "api/async_api_function.cc", | 48 "api/async_api_function.cc", |
| 47 "api/async_api_function.h", | 49 "api/async_api_function.h", |
| 48 "api/bluetooth/bluetooth_api.cc", | 50 "api/bluetooth/bluetooth_api.cc", |
| 49 "api/bluetooth/bluetooth_api.h", | 51 "api/bluetooth/bluetooth_api.h", |
| 50 "api/bluetooth/bluetooth_api_pairing_delegate.cc", | 52 "api/bluetooth/bluetooth_api_pairing_delegate.cc", |
| 51 "api/bluetooth/bluetooth_api_pairing_delegate.h", | 53 "api/bluetooth/bluetooth_api_pairing_delegate.h", |
| 52 "api/bluetooth/bluetooth_api_utils.cc", | 54 "api/bluetooth/bluetooth_api_utils.cc", |
| 53 "api/bluetooth/bluetooth_api_utils.h", | 55 "api/bluetooth/bluetooth_api_utils.h", |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 ] | 369 ] |
| 368 } | 370 } |
| 369 } | 371 } |
| 370 | 372 |
| 371 if (is_win) { | 373 if (is_win) { |
| 372 cflags = [ | 374 cflags = [ |
| 373 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 375 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 374 ] | 376 ] |
| 375 } | 377 } |
| 376 } | 378 } |
| OLD | NEW |