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

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

Issue 2832263002: Clipboard Android - Store and Read Last Modified Time from Prefs (Closed)
Patch Set: restore guard Created 3 years, 7 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 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
1000 if (is_mac) { 1001 if (is_mac) {
1001 mac_framework_bundle("ui_unittests_framework") { 1002 mac_framework_bundle("ui_unittests_framework") {
1002 testonly = true 1003 testonly = true
1003 deps = [ 1004 deps = [
1004 "//ui/resources:ui_test_pak_bundle_data", 1005 "//ui/resources:ui_test_pak_bundle_data",
1005 ] 1006 ]
1006 info_plist = "test/framework-Info.plist" 1007 info_plist = "test/framework-Info.plist"
1007 output_name = "ui_unittests Framework" 1008 output_name = "ui_unittests Framework"
1008 } 1009 }
1009 } 1010 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698