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 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 "image_loader.cc", | 462 "image_loader.cc", |
463 "image_loader.h", | 463 "image_loader.h", |
464 "image_loader_factory.cc", | 464 "image_loader_factory.cc", |
465 "image_loader_factory.h", | 465 "image_loader_factory.h", |
466 "info_map.cc", | 466 "info_map.cc", |
467 "info_map.h", | 467 "info_map.h", |
468 "install/crx_installer_error.h", | 468 "install/crx_installer_error.h", |
469 "install/extension_install_ui.cc", | 469 "install/extension_install_ui.cc", |
470 "install/extension_install_ui.h", | 470 "install/extension_install_ui.h", |
471 "install_flag.h", | 471 "install_flag.h", |
| 472 "io_thread_extension_message_filter.cc", |
| 473 "io_thread_extension_message_filter.h", |
472 "lazy_background_task_queue.cc", | 474 "lazy_background_task_queue.cc", |
473 "lazy_background_task_queue.h", | 475 "lazy_background_task_queue.h", |
474 "management_policy.cc", | 476 "management_policy.cc", |
475 "management_policy.h", | 477 "management_policy.h", |
476 "mojo/keep_alive_impl.cc", | 478 "mojo/keep_alive_impl.cc", |
477 "mojo/keep_alive_impl.h", | 479 "mojo/keep_alive_impl.h", |
478 "mojo/service_registration_manager.cc", | 480 "mojo/service_registration_manager.cc", |
479 "mojo/service_registration_manager.h", | 481 "mojo/service_registration_manager.h", |
480 "mojo/stash_backend.cc", | 482 "mojo/stash_backend.cc", |
481 "mojo/stash_backend.h", | 483 "mojo/stash_backend.h", |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 "api/networking_private/networking_private_service_client.cc", | 621 "api/networking_private/networking_private_service_client.cc", |
620 "api/networking_private/networking_private_service_client.h", | 622 "api/networking_private/networking_private_service_client.h", |
621 ] | 623 ] |
622 } | 624 } |
623 } | 625 } |
624 | 626 |
625 if (is_win) { | 627 if (is_win) { |
626 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. | 628 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
627 } | 629 } |
628 } | 630 } |
OLD | NEW |