| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 "extension_function_registry.h", | 297 "extension_function_registry.h", |
| 298 "extension_function_util.cc", | 298 "extension_function_util.cc", |
| 299 "extension_function_util.h", | 299 "extension_function_util.h", |
| 300 "extension_host.cc", | 300 "extension_host.cc", |
| 301 "extension_host.h", | 301 "extension_host.h", |
| 302 "extension_host_delegate.h", | 302 "extension_host_delegate.h", |
| 303 "extension_icon_image.cc", | 303 "extension_icon_image.cc", |
| 304 "extension_icon_image.h", | 304 "extension_icon_image.h", |
| 305 "extension_message_filter.cc", | 305 "extension_message_filter.cc", |
| 306 "extension_message_filter.h", | 306 "extension_message_filter.h", |
| 307 "extension_network_delegate.cc", |
| 308 "extension_network_delegate.h", |
| 307 "extension_pref_store.cc", | 309 "extension_pref_store.cc", |
| 308 "extension_pref_store.h", | 310 "extension_pref_store.h", |
| 309 "extension_pref_value_map.cc", | 311 "extension_pref_value_map.cc", |
| 310 "extension_pref_value_map.h", | 312 "extension_pref_value_map.h", |
| 311 "extension_pref_value_map_factory.cc", | 313 "extension_pref_value_map_factory.cc", |
| 312 "extension_pref_value_map_factory.h", | 314 "extension_pref_value_map_factory.h", |
| 313 "extension_prefs.cc", | 315 "extension_prefs.cc", |
| 314 "extension_prefs.h", | 316 "extension_prefs.h", |
| 315 "extension_prefs_factory.cc", | 317 "extension_prefs_factory.cc", |
| 316 "extension_prefs_factory.h", | 318 "extension_prefs_factory.h", |
| 317 "extension_prefs_observer.h", | 319 "extension_prefs_observer.h", |
| 318 "extension_prefs_scope.h", | 320 "extension_prefs_scope.h", |
| 319 "extension_protocols.cc", | 321 "extension_protocols.cc", |
| 320 "extension_protocols.h", | 322 "extension_protocols.h", |
| 321 "extension_registry.cc", | 323 "extension_registry.cc", |
| 322 "extension_registry.h", | 324 "extension_registry.h", |
| 323 "extension_registry_factory.cc", | 325 "extension_registry_factory.cc", |
| 324 "extension_registry_factory.h", | 326 "extension_registry_factory.h", |
| 325 "extension_registry_observer.h", | 327 "extension_registry_observer.h", |
| 326 "extension_scoped_prefs.h", | 328 "extension_scoped_prefs.h", |
| 327 "extension_system.cc", | 329 "extension_system.cc", |
| 328 "extension_system.h", | 330 "extension_system.h", |
| 329 "extension_system_provider.cc", | 331 "extension_system_provider.cc", |
| 330 "extension_system_provider.h", | 332 "extension_system_provider.h", |
| 333 "extension_url_request_context_getter.cc", |
| 334 "extension_url_request_context_getter.h", |
| 331 "extension_util.cc", | 335 "extension_util.cc", |
| 332 "extension_util.h", | 336 "extension_util.h", |
| 333 "extension_web_contents_observer.cc", | 337 "extension_web_contents_observer.cc", |
| 334 "extension_web_contents_observer.h", | 338 "extension_web_contents_observer.h", |
| 335 "extensions_browser_client.cc", | 339 "extensions_browser_client.cc", |
| 336 "extensions_browser_client.h", | 340 "extensions_browser_client.h", |
| 337 "external_provider_interface.h", | 341 "external_provider_interface.h", |
| 338 "file_highlighter.cc", | 342 "file_highlighter.cc", |
| 339 "file_highlighter.h", | 343 "file_highlighter.h", |
| 340 "file_reader.cc", | 344 "file_reader.cc", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 ] | 471 ] |
| 468 } | 472 } |
| 469 } | 473 } |
| 470 | 474 |
| 471 if (is_win) { | 475 if (is_win) { |
| 472 cflags = [ | 476 cflags = [ |
| 473 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 477 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 474 ] | 478 ] |
| 475 } | 479 } |
| 476 } | 480 } |
| OLD | NEW |