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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 "guest_view/web_view/web_view_renderer_state.cc", | 405 "guest_view/web_view/web_view_renderer_state.cc", |
406 "guest_view/web_view/web_view_renderer_state.h", | 406 "guest_view/web_view/web_view_renderer_state.h", |
407 "guest_view/worker_frame/worker_frame_constants.cc", | 407 "guest_view/worker_frame/worker_frame_constants.cc", |
408 "guest_view/worker_frame/worker_frame_constants.h", | 408 "guest_view/worker_frame/worker_frame_constants.h", |
409 "guest_view/worker_frame/worker_frame_guest.cc", | 409 "guest_view/worker_frame/worker_frame_guest.cc", |
410 "guest_view/worker_frame/worker_frame_guest.h", | 410 "guest_view/worker_frame/worker_frame_guest.h", |
411 "image_loader.cc", | 411 "image_loader.cc", |
412 "image_loader.h", | 412 "image_loader.h", |
413 "image_loader_factory.cc", | 413 "image_loader_factory.cc", |
414 "image_loader_factory.h", | 414 "image_loader_factory.h", |
415 "image_util.cc", | |
416 "image_util.h", | |
417 "info_map.cc", | 415 "info_map.cc", |
418 "info_map.h", | 416 "info_map.h", |
419 "install/crx_installer_error.h", | 417 "install/crx_installer_error.h", |
420 "install/extension_install_ui.cc", | 418 "install/extension_install_ui.cc", |
421 "install/extension_install_ui.h", | 419 "install/extension_install_ui.h", |
422 "install_flag.h", | 420 "install_flag.h", |
423 "lazy_background_task_queue.cc", | 421 "lazy_background_task_queue.cc", |
424 "lazy_background_task_queue.h", | 422 "lazy_background_task_queue.h", |
425 "management_policy.cc", | 423 "management_policy.cc", |
426 "management_policy.h", | 424 "management_policy.h", |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
527 "api/vpn_provider/vpn_service.h", | 525 "api/vpn_provider/vpn_service.h", |
528 "api/vpn_provider/vpn_service_factory.h", | 526 "api/vpn_provider/vpn_service_factory.h", |
529 ] | 527 ] |
530 } | 528 } |
531 } | 529 } |
532 | 530 |
533 if (is_win) { | 531 if (is_win) { |
534 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. | 532 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
535 } | 533 } |
536 } | 534 } |
OLD | NEW |