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

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

Issue 1220793010: [ui/base;css] adding string template expression replacement (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review changes Created 5 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/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/config.gni") 9 import("//build/config/android/config.gni")
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 "resource/resource_bundle.h", 215 "resource/resource_bundle.h",
216 "resource/resource_bundle_android.cc", 216 "resource/resource_bundle_android.cc",
217 "resource/resource_bundle_auralinux.cc", 217 "resource/resource_bundle_auralinux.cc",
218 "resource/resource_bundle_ios.mm", 218 "resource/resource_bundle_ios.mm",
219 "resource/resource_bundle_mac.mm", 219 "resource/resource_bundle_mac.mm",
220 "resource/resource_bundle_win.cc", 220 "resource/resource_bundle_win.cc",
221 "resource/resource_bundle_win.h", 221 "resource/resource_bundle_win.h",
222 "resource/resource_data_dll_win.cc", 222 "resource/resource_data_dll_win.cc",
223 "resource/resource_data_dll_win.h", 223 "resource/resource_data_dll_win.h",
224 "resource/resource_handle.h", 224 "resource/resource_handle.h",
225 "template_expressions.cc",
226 "template_expressions.h",
225 "text/bytes_formatting.cc", 227 "text/bytes_formatting.cc",
226 "text/bytes_formatting.h", 228 "text/bytes_formatting.h",
227 "theme_provider.cc", 229 "theme_provider.cc",
228 "theme_provider.h", 230 "theme_provider.h",
229 "touch/selection_bound.cc", 231 "touch/selection_bound.cc",
230 "touch/selection_bound.h", 232 "touch/selection_bound.h",
231 "touch/touch_device.h", 233 "touch/touch_device.h",
232 "touch/touch_editing_controller.cc", 234 "touch/touch_editing_controller.cc",
233 "touch/touch_editing_controller.h", 235 "touch/touch_editing_controller.h",
234 "touch/touch_enabled.cc", 236 "touch/touch_enabled.cc",
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 "l10n/l10n_util_mac_unittest.mm", 634 "l10n/l10n_util_mac_unittest.mm",
633 "l10n/l10n_util_unittest.cc", 635 "l10n/l10n_util_unittest.cc",
634 "l10n/l10n_util_win_unittest.cc", 636 "l10n/l10n_util_win_unittest.cc",
635 "l10n/time_format_unittest.cc", 637 "l10n/time_format_unittest.cc",
636 "layout_unittest.cc", 638 "layout_unittest.cc",
637 "models/tree_node_iterator_unittest.cc", 639 "models/tree_node_iterator_unittest.cc",
638 "resource/data_pack_literal.cc", 640 "resource/data_pack_literal.cc",
639 "resource/data_pack_unittest.cc", 641 "resource/data_pack_unittest.cc",
640 "resource/material_design/material_design_controller_unittest.cc", 642 "resource/material_design/material_design_controller_unittest.cc",
641 "resource/resource_bundle_unittest.cc", 643 "resource/resource_bundle_unittest.cc",
644 "template_expressions_unittest.cc",
642 "test/run_all_unittests.cc", 645 "test/run_all_unittests.cc",
643 "test/scoped_fake_nswindow_fullscreen_unittest.mm", 646 "test/scoped_fake_nswindow_fullscreen_unittest.mm",
644 "test/test_clipboard_unittest.cc", 647 "test/test_clipboard_unittest.cc",
645 "user_activity/user_activity_detector_unittest.cc", 648 "user_activity/user_activity_detector_unittest.cc",
646 ] 649 ]
647 650
648 if (is_android) { 651 if (is_android) {
649 sources -= [ "user_activity/user_activity_detector_unittest.cc" ] 652 sources -= [ "user_activity/user_activity_detector_unittest.cc" ]
650 } 653 }
651 654
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
810 } 813 }
811 814
812 if (is_chromeos) { 815 if (is_chromeos) {
813 deps += [ 816 deps += [
814 "//chromeos", 817 "//chromeos",
815 "//ui/events:dom_keycode_converter", 818 "//ui/events:dom_keycode_converter",
816 ] 819 ]
817 } 820 }
818 } 821 }
819 # TODO(GYP) Mac (ui_base_tests_bundle) 822 # TODO(GYP) Mac (ui_base_tests_bundle)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698