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

Unified Diff: ios/shared/chrome/browser/tabs/BUILD.gn

Issue 2799723002: [ios] Move WebStateList to ios/chrome/browser/web_state_list. (Closed)
Patch Set: Rebase. 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 side-by-side diff with in-line comments
Download patch
Index: ios/shared/chrome/browser/tabs/BUILD.gn
diff --git a/ios/shared/chrome/browser/tabs/BUILD.gn b/ios/shared/chrome/browser/tabs/BUILD.gn
deleted file mode 100644
index 42b01ee233e4e8df8beac9d3631ef74dc64abbcf..0000000000000000000000000000000000000000
--- a/ios/shared/chrome/browser/tabs/BUILD.gn
+++ /dev/null
@@ -1,68 +0,0 @@
-# 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("tabs") {
- sources = [
- "web_state_list.h",
- "web_state_list.mm",
- "web_state_list_delegate.h",
- "web_state_list_fast_enumeration_helper.h",
- "web_state_list_fast_enumeration_helper.mm",
- "web_state_list_metrics_observer.h",
- "web_state_list_metrics_observer.mm",
- "web_state_list_observer.h",
- "web_state_list_observer.mm",
- "web_state_list_observer_bridge.h",
- "web_state_list_observer_bridge.mm",
- "web_state_list_order_controller.h",
- "web_state_list_order_controller.mm",
- "web_state_list_serialization.h",
- "web_state_list_serialization.mm",
- "web_state_opener.h",
- "web_state_opener.mm",
- ]
- deps = [
- "//base",
- "//ios/web",
- "//ui/base",
- ]
- libs = [ "Foundation.framework" ]
- configs += [ "//build/config/compiler:enable_arc" ]
-}
-
-source_set("test_support") {
- testonly = true
- sources = [
- "fake_web_state_list_delegate.h",
- "fake_web_state_list_delegate.mm",
- ]
- deps = [
- ":tabs",
- "//base",
- ]
- configs += [ "//build/config/compiler:enable_arc" ]
-}
-
-source_set("unit_tests") {
- testonly = true
- sources = [
- "web_state_list_fast_enumeration_helper_unittest.mm",
- "web_state_list_order_controller_unittest.mm",
- "web_state_list_serialization_unittest.mm",
- "web_state_list_unittest.mm",
- "web_state_opener_unittest.mm",
- ]
- deps = [
- ":tabs",
- ":test_support",
- "//base",
- "//ios/web",
- "//ios/web:test_support",
- "//net",
- "//testing/gtest",
- "//ui/base",
- "//url",
- ]
- configs += [ "//build/config/compiler:enable_arc" ]
-}

Powered by Google App Engine
This is Rietveld 408576698