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

Side by Side Diff: ios/chrome/browser/ui/BUILD.gn

Issue 2592983003: [Clean Skeleton] Migrate code to clean/ (Closed)
Patch Set: Fix includes. Created 4 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/ios/rules.gni") 5 import("//build/config/ios/rules.gni")
6 6
7 source_set("ui_arc") { 7 source_set("ui_arc") {
8 sources = [ 8 sources = [
9 "network_activity_indicator_manager.h", 9 "network_activity_indicator_manager.h",
10 "network_activity_indicator_manager.mm", 10 "network_activity_indicator_manager.mm",
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 "//ios/chrome/browser/tabs:tabs_internal", 450 "//ios/chrome/browser/tabs:tabs_internal",
451 "//ios/chrome/browser/ui/omnibox:omnibox_internal", 451 "//ios/chrome/browser/ui/omnibox:omnibox_internal",
452 "//ios/chrome/browser/ui/toolbar", 452 "//ios/chrome/browser/ui/toolbar",
453 "//ios/chrome/test/base:perf_test_support", 453 "//ios/chrome/test/base:perf_test_support",
454 "//testing/gtest", 454 "//testing/gtest",
455 "//third_party/ocmock", 455 "//third_party/ocmock",
456 "//ui/base:test_support", 456 "//ui/base:test_support",
457 ] 457 ]
458 libs = [ "UIKit.framework" ] 458 libs = [ "UIKit.framework" ]
459 } 459 }
460
461 # Clean skeleton targets
462 source_set("ui_clean_skeleton") {
463 sources = [
464 "ui_types.h",
465 ]
466
467 configs += [ "//build/config/compiler:enable_arc" ]
468 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698