OLD | NEW |
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", |
11 "ios_chrome_tab_restore_service_client.mm", | 11 "ios_chrome_tab_restore_service_client.mm", |
12 "ios_chrome_tab_restore_service_factory.cc", | 12 "ios_chrome_tab_restore_service_factory.cc", |
13 "ios_chrome_tab_restore_service_factory.h", | 13 "ios_chrome_tab_restore_service_factory.h", |
| 14 "session_ios.h", |
| 15 "session_ios.mm", |
14 "session_service_ios.h", | 16 "session_service_ios.h", |
15 "session_service_ios.mm", | 17 "session_service_ios.mm", |
16 "session_window_ios.h", | 18 "session_window_ios.h", |
17 "session_window_ios.mm", | 19 "session_window_ios.mm", |
18 ] | 20 ] |
19 deps = [ | 21 deps = [ |
20 "//base", | 22 "//base", |
21 "//components/keyed_service/ios", | 23 "//components/keyed_service/ios", |
22 "//components/sessions", | 24 "//components/sessions", |
23 "//ios/chrome/browser", | 25 "//ios/chrome/browser", |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 testonly = true | 101 testonly = true |
100 sources = [ | 102 sources = [ |
101 "//ios/chrome/test/data/sessions/corrupted.plist", | 103 "//ios/chrome/test/data/sessions/corrupted.plist", |
102 "//ios/chrome/test/data/sessions/session_m57.plist", | 104 "//ios/chrome/test/data/sessions/session_m57.plist", |
103 "//ios/chrome/test/data/sessions/session_m58.plist", | 105 "//ios/chrome/test/data/sessions/session_m58.plist", |
104 ] | 106 ] |
105 outputs = [ | 107 outputs = [ |
106 "{{bundle_resources_dir}}/ios/chrome/test/data/sessions/{{source_file_part}}
", | 108 "{{bundle_resources_dir}}/ios/chrome/test/data/sessions/{{source_file_part}}
", |
107 ] | 109 ] |
108 } | 110 } |
OLD | NEW |