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

Side by Side Diff: ui/base/BUILD.gn

Issue 2969123002: Add deduplication logic to .pak files (Closed)
Patch Set: fix resource_sizes computation Created 3 years, 5 months 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/util/branding.gni") 9 import("//build/util/branding.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after
774 "clipboard/clipboard_mac_unittest.mm", 774 "clipboard/clipboard_mac_unittest.mm",
775 "clipboard/clipboard_util_mac_unittest.mm", 775 "clipboard/clipboard_util_mac_unittest.mm",
776 "l10n/l10n_util_mac_unittest.mm", 776 "l10n/l10n_util_mac_unittest.mm",
777 "l10n/l10n_util_unittest.cc", 777 "l10n/l10n_util_unittest.cc",
778 "l10n/l10n_util_win_unittest.cc", 778 "l10n/l10n_util_win_unittest.cc",
779 "l10n/time_format_unittest.cc", 779 "l10n/time_format_unittest.cc",
780 "layout_unittest.cc", 780 "layout_unittest.cc",
781 "material_design/material_design_controller_unittest.cc", 781 "material_design/material_design_controller_unittest.cc",
782 "models/tree_node_iterator_unittest.cc", 782 "models/tree_node_iterator_unittest.cc",
783 "resource/data_pack_literal.cc", 783 "resource/data_pack_literal.cc",
784 "resource/data_pack_literal.h",
784 "resource/data_pack_unittest.cc", 785 "resource/data_pack_unittest.cc",
785 "resource/resource_bundle_unittest.cc", 786 "resource/resource_bundle_unittest.cc",
786 "resource/scale_factor_unittest.cc", 787 "resource/scale_factor_unittest.cc",
787 "template_expressions_unittest.cc", 788 "template_expressions_unittest.cc",
788 "test/page_transition_types_unittest.cc", 789 "test/page_transition_types_unittest.cc",
789 "test/run_all_unittests.cc", 790 "test/run_all_unittests.cc",
790 "user_activity/user_activity_detector_unittest.cc", 791 "user_activity/user_activity_detector_unittest.cc",
791 ] 792 ]
792 if (!is_ios) { 793 if (!is_ios) {
793 sources += [ 794 sources += [
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
1024 # This source set is used by both //chrome/browser and 1025 # This source set is used by both //chrome/browser and
1025 # //chrome/installer/setup. It must have minimal dependencies for the latter 1026 # //chrome/installer/setup. It must have minimal dependencies for the latter
1026 # (e.g., no skia). 1027 # (e.g., no skia).
1027 source_set("fullscreen_win") { 1028 source_set("fullscreen_win") {
1028 sources = [ 1029 sources = [
1029 "fullscreen_win.cc", 1030 "fullscreen_win.cc",
1030 "fullscreen_win.h", 1031 "fullscreen_win.h",
1031 ] 1032 ]
1032 } 1033 }
1033 } 1034 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698