| 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 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 if (enable_extensions) { | 33 if (enable_extensions) { |
| 34 # Includes all API implementations and the ExtensionsApiClient | 34 # Includes all API implementations and the ExtensionsApiClient |
| 35 # interface. Moving an API from src/chrome to src/extensions implies | 35 # interface. Moving an API from src/chrome to src/extensions implies |
| 36 # it can be cleanly disabled with enable_extensions=false. | 36 # it can be cleanly disabled with enable_extensions=false. |
| 37 # TODO: Eventually the entire extensions module should not be built | 37 # TODO: Eventually the entire extensions module should not be built |
| 38 # when enable_extensions=false. | 38 # when enable_extensions=false. |
| 39 sources += [ | 39 sources += [ |
| 40 "api/activity_log/web_request_constants.cc", | 40 "api/activity_log/web_request_constants.cc", |
| 41 "api/activity_log/web_request_constants.h", | 41 "api/activity_log/web_request_constants.h", |
| 42 "api/alarms/alarms_api.cc", |
| 43 "api/alarms/alarms_api.h", |
| 44 "api/alarms/alarm_manager.cc", |
| 45 "api/alarms/alarm_manager.h", |
| 42 "api/api_resource.cc", | 46 "api/api_resource.cc", |
| 43 "api/api_resource.h", | 47 "api/api_resource.h", |
| 44 "api/api_resource_manager.h", | 48 "api/api_resource_manager.h", |
| 45 "api/app_current_window_internal/app_current_window_internal_api.cc", | 49 "api/app_current_window_internal/app_current_window_internal_api.cc", |
| 46 "api/app_current_window_internal/app_current_window_internal_api.h", | 50 "api/app_current_window_internal/app_current_window_internal_api.h", |
| 47 "api/app_runtime/app_runtime_api.cc", | 51 "api/app_runtime/app_runtime_api.cc", |
| 48 "api/app_runtime/app_runtime_api.h", | 52 "api/app_runtime/app_runtime_api.h", |
| 49 "api/app_view/app_view_guest_internal_api.cc", | 53 "api/app_view/app_view_guest_internal_api.cc", |
| 50 "api/app_view/app_view_guest_internal_api.h", | 54 "api/app_view/app_view_guest_internal_api.h", |
| 51 "api/app_window/app_window_api.cc", | 55 "api/app_window/app_window_api.cc", |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 sources += [ "api/audio/audio_service_linux.cc" ] | 549 sources += [ "api/audio/audio_service_linux.cc" ] |
| 546 } else { | 550 } else { |
| 547 sources += [ "api/audio/audio_service.cc" ] | 551 sources += [ "api/audio/audio_service.cc" ] |
| 548 } | 552 } |
| 549 } | 553 } |
| 550 | 554 |
| 551 if (is_win) { | 555 if (is_win) { |
| 552 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. | 556 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
| 553 } | 557 } |
| 554 } | 558 } |
| OLD | NEW |