| 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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 "install/crx_installer_error.h", | 399 "install/crx_installer_error.h", |
| 400 "install/extension_install_ui.cc", | 400 "install/extension_install_ui.cc", |
| 401 "install/extension_install_ui.h", | 401 "install/extension_install_ui.h", |
| 402 "install_flag.h", | 402 "install_flag.h", |
| 403 "lazy_background_task_queue.cc", | 403 "lazy_background_task_queue.cc", |
| 404 "lazy_background_task_queue.h", | 404 "lazy_background_task_queue.h", |
| 405 "management_policy.cc", | 405 "management_policy.cc", |
| 406 "management_policy.h", | 406 "management_policy.h", |
| 407 "mojo/keep_alive_impl.cc", | 407 "mojo/keep_alive_impl.cc", |
| 408 "mojo/keep_alive_impl.h", | 408 "mojo/keep_alive_impl.h", |
| 409 "mojo/stash_backend.cc", |
| 410 "mojo/stash_backend.h", |
| 409 "pref_names.cc", | 411 "pref_names.cc", |
| 410 "pref_names.h", | 412 "pref_names.h", |
| 411 "process_manager.cc", | 413 "process_manager.cc", |
| 412 "process_manager.h", | 414 "process_manager.h", |
| 413 "process_manager_delegate.h", | 415 "process_manager_delegate.h", |
| 414 "process_manager_observer.h", | 416 "process_manager_observer.h", |
| 415 "process_map.cc", | 417 "process_map.cc", |
| 416 "process_map.h", | 418 "process_map.h", |
| 417 "process_map_factory.cc", | 419 "process_map_factory.cc", |
| 418 "process_map_factory.h", | 420 "process_map_factory.h", |
| 419 "quota_service.cc", | 421 "quota_service.cc", |
| 420 "quota_service.h", | 422 "quota_service.h", |
| 421 "renderer_startup_helper.cc", | 423 "renderer_startup_helper.cc", |
| 422 "renderer_startup_helper.h", | 424 "renderer_startup_helper.h", |
| 423 "runtime_data.cc", | 425 "runtime_data.cc", |
| 424 "runtime_data.h", | 426 "runtime_data.h", |
| 425 "script_execution_observer.h", | 427 "script_execution_observer.h", |
| 426 "script_executor.cc", | 428 "script_executor.cc", |
| 427 "script_executor.h", | 429 "script_executor.h", |
| 428 "stash_backend.cc", | |
| 429 "stash_backend.h", | |
| 430 "state_store.cc", | 430 "state_store.cc", |
| 431 "state_store.h", | 431 "state_store.h", |
| 432 "suggest_permission_util.cc", | 432 "suggest_permission_util.cc", |
| 433 "suggest_permission_util.h", | 433 "suggest_permission_util.h", |
| 434 "uninstall_reason.h", | 434 "uninstall_reason.h", |
| 435 "update_observer.h", | 435 "update_observer.h", |
| 436 "updater/extension_cache.h", | 436 "updater/extension_cache.h", |
| 437 "updater/extension_downloader.cc", | 437 "updater/extension_downloader.cc", |
| 438 "updater/extension_downloader.h", | 438 "updater/extension_downloader.h", |
| 439 "updater/extension_downloader_delegate.cc", | 439 "updater/extension_downloader_delegate.cc", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 ] | 491 ] |
| 492 } | 492 } |
| 493 } | 493 } |
| 494 | 494 |
| 495 if (is_win) { | 495 if (is_win) { |
| 496 cflags = [ | 496 cflags = [ |
| 497 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 497 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 498 ] | 498 ] |
| 499 } | 499 } |
| 500 } | 500 } |
| OLD | NEW |