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

Side by Side Diff: ios/chrome/browser/sessions/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 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 source_set("sessions") { 5 source_set("sessions") {
6 configs += [ "//build/config/compiler:enable_arc" ] 6 configs += [ "//build/config/compiler:enable_arc" ]
7 sources = [ 7 sources = [
8 "ios_chrome_session_tab_helper.h", 8 "ios_chrome_session_tab_helper.h",
9 "ios_chrome_session_tab_helper.mm", 9 "ios_chrome_session_tab_helper.mm",
10 "ios_chrome_tab_restore_service_client.h", 10 "ios_chrome_tab_restore_service_client.h",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 "tab_restore_service_delegate_impl_ios_factory.h", 45 "tab_restore_service_delegate_impl_ios_factory.h",
46 "tab_restore_service_delegate_impl_ios_factory.mm", 46 "tab_restore_service_delegate_impl_ios_factory.mm",
47 ] 47 ]
48 deps = [ 48 deps = [
49 "//base", 49 "//base",
50 "//components/keyed_service/core", 50 "//components/keyed_service/core",
51 "//components/keyed_service/ios", 51 "//components/keyed_service/ios",
52 "//components/sessions", 52 "//components/sessions",
53 "//ios/chrome/browser/browser_state", 53 "//ios/chrome/browser/browser_state",
54 "//ios/chrome/browser/tabs", 54 "//ios/chrome/browser/tabs",
55 "//ios/shared/chrome/browser/tabs", 55 "//ios/chrome/browser/web_state_list",
56 "//ios/web", 56 "//ios/web",
57 "//net", 57 "//net",
58 ] 58 ]
59 libs = [ "UIKit.framework" ] 59 libs = [ "UIKit.framework" ]
60 } 60 }
61 61
62 source_set("test_support") { 62 source_set("test_support") {
63 configs += [ "//build/config/compiler:enable_arc" ] 63 configs += [ "//build/config/compiler:enable_arc" ]
64 testonly = true 64 testonly = true
65 sources = [ 65 sources = [
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 testonly = true 97 testonly = true
98 sources = [ 98 sources = [
99 "//ios/chrome/test/data/sessions/corrupted.plist", 99 "//ios/chrome/test/data/sessions/corrupted.plist",
100 "//ios/chrome/test/data/sessions/session_m57.plist", 100 "//ios/chrome/test/data/sessions/session_m57.plist",
101 "//ios/chrome/test/data/sessions/session_m58.plist", 101 "//ios/chrome/test/data/sessions/session_m58.plist",
102 ] 102 ]
103 outputs = [ 103 outputs = [
104 "{{bundle_resources_dir}}/ios/chrome/test/data/sessions/{{source_file_part}} ", 104 "{{bundle_resources_dir}}/ios/chrome/test/data/sessions/{{source_file_part}} ",
105 ] 105 ]
106 } 106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698