Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(693)

Side by Side Diff: extensions/browser/BUILD.gn

Issue 782693002: Ensure there are always nice icons for bookmark apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Self review; test Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
399 "guest_view/web_view/web_view_permission_helper.cc", 399 "guest_view/web_view/web_view_permission_helper.cc",
400 "guest_view/web_view/web_view_permission_helper.h", 400 "guest_view/web_view/web_view_permission_helper.h",
401 "guest_view/web_view/web_view_permission_helper_delegate.cc", 401 "guest_view/web_view/web_view_permission_helper_delegate.cc",
402 "guest_view/web_view/web_view_permission_helper_delegate.h", 402 "guest_view/web_view/web_view_permission_helper_delegate.h",
403 "guest_view/web_view/web_view_renderer_state.cc", 403 "guest_view/web_view/web_view_renderer_state.cc",
404 "guest_view/web_view/web_view_renderer_state.h", 404 "guest_view/web_view/web_view_renderer_state.h",
405 "image_loader.cc", 405 "image_loader.cc",
406 "image_loader.h", 406 "image_loader.h",
407 "image_loader_factory.cc", 407 "image_loader_factory.cc",
408 "image_loader_factory.h", 408 "image_loader_factory.h",
409 "image_util.cc",
410 "image_util.h",
411 "info_map.cc", 409 "info_map.cc",
412 "info_map.h", 410 "info_map.h",
413 "install/crx_installer_error.h", 411 "install/crx_installer_error.h",
414 "install/extension_install_ui.cc", 412 "install/extension_install_ui.cc",
415 "install/extension_install_ui.h", 413 "install/extension_install_ui.h",
416 "install_flag.h", 414 "install_flag.h",
417 "lazy_background_task_queue.cc", 415 "lazy_background_task_queue.cc",
418 "lazy_background_task_queue.h", 416 "lazy_background_task_queue.h",
419 "management_policy.cc", 417 "management_policy.cc",
420 "management_policy.h", 418 "management_policy.h",
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 "api/vpn_provider/vpn_service.h", 519 "api/vpn_provider/vpn_service.h",
522 "api/vpn_provider/vpn_service_factory.h", 520 "api/vpn_provider/vpn_service_factory.h",
523 ] 521 ]
524 } 522 }
525 } 523 }
526 524
527 if (is_win) { 525 if (is_win) {
528 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t runcations. 526 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t runcations.
529 } 527 }
530 } 528 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698