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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 "guest_view/web_view/web_view_renderer_state.cc", | 388 "guest_view/web_view/web_view_renderer_state.cc", |
389 "guest_view/web_view/web_view_renderer_state.h", | 389 "guest_view/web_view/web_view_renderer_state.h", |
390 "image_loader.cc", | 390 "image_loader.cc", |
391 "image_loader.h", | 391 "image_loader.h", |
392 "image_loader_factory.cc", | 392 "image_loader_factory.cc", |
393 "image_loader_factory.h", | 393 "image_loader_factory.h", |
394 "image_util.cc", | 394 "image_util.cc", |
395 "image_util.h", | 395 "image_util.h", |
396 "info_map.cc", | 396 "info_map.cc", |
397 "info_map.h", | 397 "info_map.h", |
| 398 "install/crx_installer_error.h", |
| 399 "install/extension_install_ui.cc", |
| 400 "install/extension_install_ui.h", |
398 "install_flag.h", | 401 "install_flag.h", |
399 "lazy_background_task_queue.cc", | 402 "lazy_background_task_queue.cc", |
400 "lazy_background_task_queue.h", | 403 "lazy_background_task_queue.h", |
401 "management_policy.cc", | 404 "management_policy.cc", |
402 "management_policy.h", | 405 "management_policy.h", |
403 "pref_names.cc", | 406 "pref_names.cc", |
404 "pref_names.h", | 407 "pref_names.h", |
405 "process_manager.cc", | 408 "process_manager.cc", |
406 "process_manager.h", | 409 "process_manager.h", |
407 "process_manager_delegate.h", | 410 "process_manager_delegate.h", |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 ] | 488 ] |
486 } | 489 } |
487 } | 490 } |
488 | 491 |
489 if (is_win) { | 492 if (is_win) { |
490 cflags = [ | 493 cflags = [ |
491 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 494 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
492 ] | 495 ] |
493 } | 496 } |
494 } | 497 } |
OLD | NEW |