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 15 matching lines...) Expand all Loading... |
26 "//third_party/re2" | 26 "//third_party/re2" |
27 ] | 27 ] |
28 | 28 |
29 if (enable_extensions) { | 29 if (enable_extensions) { |
30 # Includes all API implementations and the ExtensionsApiClient | 30 # Includes all API implementations and the ExtensionsApiClient |
31 # interface. Moving an API from src/chrome to src/extensions implies | 31 # interface. Moving an API from src/chrome to src/extensions implies |
32 # it can be cleanly disabled with enable_extensions=false. | 32 # it can be cleanly disabled with enable_extensions=false. |
33 # TODO: Eventually the entire extensions module should not be built | 33 # TODO: Eventually the entire extensions module should not be built |
34 # when enable_extensions=false. | 34 # when enable_extensions=false. |
35 sources += [ | 35 sources += [ |
| 36 "api/activity_log/web_request_constants.cc", |
| 37 "api/activity_log/web_request_constants.h", |
36 "api/api_resource.cc", | 38 "api/api_resource.cc", |
37 "api/api_resource.h", | 39 "api/api_resource.h", |
38 "api/api_resource_manager.h", | 40 "api/api_resource_manager.h", |
39 "api/app_current_window_internal/app_current_window_internal_api.cc", | 41 "api/app_current_window_internal/app_current_window_internal_api.cc", |
40 "api/app_current_window_internal/app_current_window_internal_api.h", | 42 "api/app_current_window_internal/app_current_window_internal_api.h", |
41 "api/app_runtime/app_runtime_api.cc", | 43 "api/app_runtime/app_runtime_api.cc", |
42 "api/app_runtime/app_runtime_api.h", | 44 "api/app_runtime/app_runtime_api.h", |
43 "api/app_view/app_view_internal_api.cc", | 45 "api/app_view/app_view_internal_api.cc", |
44 "api/app_view/app_view_internal_api.h", | 46 "api/app_view/app_view_internal_api.h", |
45 "api/app_window/app_window_api.cc", | 47 "api/app_window/app_window_api.cc", |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 ] | 453 ] |
452 } | 454 } |
453 } | 455 } |
454 | 456 |
455 if (is_win) { | 457 if (is_win) { |
456 cflags = [ | 458 cflags = [ |
457 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 459 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
458 ] | 460 ] |
459 } | 461 } |
460 } | 462 } |
OLD | NEW |