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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 "api/execute_code_function.cc", | 131 "api/execute_code_function.cc", |
132 "api/execute_code_function.h", | 132 "api/execute_code_function.h", |
133 "api/extensions_api_client.cc", | 133 "api/extensions_api_client.cc", |
134 "api/extensions_api_client.h", | 134 "api/extensions_api_client.h", |
135 "api/hid/hid_api.cc", | 135 "api/hid/hid_api.cc", |
136 "api/hid/hid_api.h", | 136 "api/hid/hid_api.h", |
137 "api/hid/hid_connection_resource.cc", | 137 "api/hid/hid_connection_resource.cc", |
138 "api/hid/hid_connection_resource.h", | 138 "api/hid/hid_connection_resource.h", |
139 "api/hid/hid_device_manager.cc", | 139 "api/hid/hid_device_manager.cc", |
140 "api/hid/hid_device_manager.h", | 140 "api/hid/hid_device_manager.h", |
141 "api/messaging/native_message_host.cc", | |
142 "api/power/power_api.cc", | 141 "api/power/power_api.cc", |
143 "api/power/power_api.h", | 142 "api/power/power_api.h", |
144 "api/power/power_api_manager.cc", | 143 "api/power/power_api_manager.cc", |
145 "api/power/power_api_manager.h", | 144 "api/power/power_api_manager.h", |
146 "api/runtime/runtime_api.cc", | 145 "api/runtime/runtime_api.cc", |
147 "api/runtime/runtime_api.h", | 146 "api/runtime/runtime_api.h", |
148 "api/runtime/runtime_api_delegate.cc", | 147 "api/runtime/runtime_api_delegate.cc", |
149 "api/runtime/runtime_api_delegate.h", | 148 "api/runtime/runtime_api_delegate.h", |
150 "api/serial/serial_api.cc", | 149 "api/serial/serial_api.cc", |
151 "api/serial/serial_api.h", | 150 "api/serial/serial_api.h", |
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
476 ] | 475 ] |
477 } | 476 } |
478 } | 477 } |
479 | 478 |
480 if (is_win) { | 479 if (is_win) { |
481 cflags = [ | 480 cflags = [ |
482 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 481 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
483 ] | 482 ] |
484 } | 483 } |
485 } | 484 } |
OLD | NEW |