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

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

Issue 2812773002: Refactor Clipboard Last Modified Time Storage (Closed)
Patch Set: load on startup Created 3 years, 8 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("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//ui/base/ui_features.gni") 10 import("//ui/base/ui_features.gni")
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 ":ui_features", 378 ":ui_features",
379 "//base", 379 "//base",
380 "//skia", 380 "//skia",
381 "//ui/gfx", 381 "//ui/gfx",
382 "//ui/gfx/geometry", 382 "//ui/gfx/geometry",
383 ] 383 ]
384 deps = [ 384 deps = [
385 "//base:base_static", 385 "//base:base_static",
386 "//base:i18n", 386 "//base:i18n",
387 "//base/third_party/dynamic_annotations", 387 "//base/third_party/dynamic_annotations",
388 "//components/prefs",
388 "//net", 389 "//net",
389 "//third_party/icu", 390 "//third_party/icu",
390 "//third_party/zlib:zlib", 391 "//third_party/zlib:zlib",
391 "//ui/display", 392 "//ui/display",
392 "//ui/events", 393 "//ui/events",
393 "//ui/events/devices", 394 "//ui/events/devices",
394 "//ui/resources", 395 "//ui/resources",
395 "//ui/strings", 396 "//ui/strings",
396 "//url", 397 "//url",
397 ] 398 ]
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
995 if (is_mac) { 996 if (is_mac) {
996 mac_framework_bundle("ui_unittests_framework") { 997 mac_framework_bundle("ui_unittests_framework") {
997 testonly = true 998 testonly = true
998 deps = [ 999 deps = [
999 "//ui/resources:ui_test_pak_bundle_data", 1000 "//ui/resources:ui_test_pak_bundle_data",
1000 ] 1001 ]
1001 info_plist = "test/framework-Info.plist" 1002 info_plist = "test/framework-Info.plist"
1002 output_name = "ui_unittests Framework" 1003 output_name = "ui_unittests Framework"
1003 } 1004 }
1004 } 1005 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698