| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 "api/hid/hid_connection_resource.cc", | 151 "api/hid/hid_connection_resource.cc", |
| 152 "api/hid/hid_connection_resource.h", | 152 "api/hid/hid_connection_resource.h", |
| 153 "api/hid/hid_device_manager.cc", | 153 "api/hid/hid_device_manager.cc", |
| 154 "api/hid/hid_device_manager.h", | 154 "api/hid/hid_device_manager.h", |
| 155 "api/management/management_api.cc", | 155 "api/management/management_api.cc", |
| 156 "api/management/management_api.h", | 156 "api/management/management_api.h", |
| 157 "api/management/management_api_constants.cc", | 157 "api/management/management_api_constants.cc", |
| 158 "api/management/management_api_constants.h", | 158 "api/management/management_api_constants.h", |
| 159 "api/management/management_api_delegate.h", | 159 "api/management/management_api_delegate.h", |
| 160 "api/messaging/native_message_host.cc", | 160 "api/messaging/native_message_host.cc", |
| 161 "api/mime_handler/mime_handler.cc", |
| 162 "api/mime_handler/mime_handler.h", |
| 161 "api/power/power_api.cc", | 163 "api/power/power_api.cc", |
| 162 "api/power/power_api.h", | 164 "api/power/power_api.h", |
| 163 "api/power/power_api_manager.cc", | 165 "api/power/power_api_manager.cc", |
| 164 "api/power/power_api_manager.h", | 166 "api/power/power_api_manager.h", |
| 165 "api/runtime/runtime_api.cc", | 167 "api/runtime/runtime_api.cc", |
| 166 "api/runtime/runtime_api.h", | 168 "api/runtime/runtime_api.h", |
| 167 "api/runtime/runtime_api_delegate.cc", | 169 "api/runtime/runtime_api_delegate.cc", |
| 168 "api/runtime/runtime_api_delegate.h", | 170 "api/runtime/runtime_api_delegate.h", |
| 169 "api/serial/serial_api.cc", | 171 "api/serial/serial_api.cc", |
| 170 "api/serial/serial_api.h", | 172 "api/serial/serial_api.h", |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 sources += [ "api/audio/audio_service_linux.cc" ] | 541 sources += [ "api/audio/audio_service_linux.cc" ] |
| 540 } else { | 542 } else { |
| 541 sources += [ "api/audio/audio_service.cc" ] | 543 sources += [ "api/audio/audio_service.cc" ] |
| 542 } | 544 } |
| 543 } | 545 } |
| 544 | 546 |
| 545 if (is_win) { | 547 if (is_win) { |
| 546 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. | 548 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
| 547 } | 549 } |
| 548 } | 550 } |
| OLD | NEW |