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