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 17 matching lines...) Expand all Loading... |
28 if (enable_extensions) { | 28 if (enable_extensions) { |
29 # Includes all API implementations and the ExtensionsApiClient | 29 # Includes all API implementations and the ExtensionsApiClient |
30 # interface. Moving an API from src/chrome to src/extensions implies | 30 # interface. Moving an API from src/chrome to src/extensions implies |
31 # it can be cleanly disabled with enable_extensions=false. | 31 # it can be cleanly disabled with enable_extensions=false. |
32 # TODO: Eventually the entire extensions module should not be built | 32 # TODO: Eventually the entire extensions module should not be built |
33 # when enable_extensions=false. | 33 # when enable_extensions=false. |
34 sources += [ | 34 sources += [ |
35 "api/api_resource.cc", | 35 "api/api_resource.cc", |
36 "api/api_resource.h", | 36 "api/api_resource.h", |
37 "api/api_resource_manager.h", | 37 "api/api_resource_manager.h", |
| 38 "api/app_current_window_internal/app_current_window_internal_api.cc", |
| 39 "api/app_current_window_internal/app_current_window_internal_api.h", |
38 "api/app_runtime/app_runtime_api.cc", | 40 "api/app_runtime/app_runtime_api.cc", |
39 "api/app_runtime/app_runtime_api.h", | 41 "api/app_runtime/app_runtime_api.h", |
40 "api/app_view/app_view_internal_api.cc", | 42 "api/app_view/app_view_internal_api.cc", |
41 "api/app_view/app_view_internal_api.h", | 43 "api/app_view/app_view_internal_api.h", |
42 "api/app_window/app_window_api.cc", | 44 "api/app_window/app_window_api.cc", |
43 "api/app_window/app_window_api.h", | 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", |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 ] | 404 ] |
403 } | 405 } |
404 } | 406 } |
405 | 407 |
406 if (is_win) { | 408 if (is_win) { |
407 cflags = [ | 409 cflags = [ |
408 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 410 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
409 ] | 411 ] |
410 } | 412 } |
411 } | 413 } |
OLD | NEW |