| Index: ios/clean/chrome/browser/ui/recent_tabs/BUILD.gn
|
| diff --git a/ios/clean/chrome/browser/ui/recent_tabs/BUILD.gn b/ios/clean/chrome/browser/ui/recent_tabs/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0ebc0e4f6e3b2c680f73e031eaf6033ed019a2e2
|
| --- /dev/null
|
| +++ b/ios/clean/chrome/browser/ui/recent_tabs/BUILD.gn
|
| @@ -0,0 +1,32 @@
|
| +# Copyright 2017 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +source_set("recent_tabs") {
|
| + sources = [
|
| + "recent_tabs_coordinator.h",
|
| + "recent_tabs_coordinator.mm",
|
| + ]
|
| +
|
| + configs += [ "//build/config/compiler:enable_arc" ]
|
| +
|
| + deps = [
|
| + "//ios/chrome/browser/ui",
|
| + "//ios/chrome/browser/ui/ntp/recent_tabs",
|
| + "//ios/shared/chrome/browser/ui/browser_list",
|
| + "//ios/shared/chrome/browser/ui/coordinators",
|
| + ]
|
| +}
|
| +
|
| +source_set("unit_tests") {
|
| + testonly = true
|
| + sources = [
|
| + "recent_tabs_coordinator_unittest.mm",
|
| + ]
|
| +
|
| + deps = [
|
| + ":recent_tabs",
|
| + "//testing/gtest",
|
| + ]
|
| + configs += [ "//build/config/compiler:enable_arc" ]
|
| +}
|
|
|