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

Side by Side Diff: ios/shared/chrome/browser/tabs/BUILD.gn

Issue 2680403005: Introduce WebStateList to manage a list of web::WebState. (Closed)
Patch Set: Rebase. Created 3 years, 10 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
« no previous file with comments | « ios/shared/DEPS ('k') | ios/shared/chrome/browser/tabs/web_state_list.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 source_set("tabs") {
6 sources = [
7 "web_state_list.h",
8 "web_state_list.mm",
9 "web_state_list_fast_enumeration_helper.h",
10 "web_state_list_fast_enumeration_helper.mm",
11 "web_state_list_observer.h",
12 "web_state_list_observer_bridge.h",
13 "web_state_list_observer_bridge.mm",
14 ]
15 deps = [
16 "//base",
17 "//ios/web",
18 ]
19 libs = [ "Foundation.framework" ]
20 configs += [ "//build/config/compiler:enable_arc" ]
21 }
22
23 source_set("unit_tests") {
24 testonly = true
25 sources = [
26 "web_state_list_fast_enumeration_helper_unittest.mm",
27 "web_state_list_unittest.mm",
28 ]
29 deps = [
30 ":tabs",
31 "//base",
32 "//ios/web:test_support",
33 "//net",
34 "//testing/gtest",
35 "//url",
36 ]
37 configs += [ "//build/config/compiler:enable_arc" ]
38 }
OLDNEW
« no previous file with comments | « ios/shared/DEPS ('k') | ios/shared/chrome/browser/tabs/web_state_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698