| 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", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/web", | 55 "//ios/web", |
| 56 "//net", | 56 "//net", |
| 57 ] | 57 ] |
| 58 libs = [ "UIKit.framework" ] | 58 libs = [ "UIKit.framework" ] |
| 59 } | 59 } |
| 60 | 60 |
| 61 source_set("test_support") { | 61 source_set("test_support") { |
| 62 configs += [ "//build/config/compiler:enable_arc" ] |
| 62 testonly = true | 63 testonly = true |
| 63 sources = [ | 64 sources = [ |
| 64 "test_session_service.h", | 65 "test_session_service.h", |
| 65 "test_session_service.mm", | 66 "test_session_service.mm", |
| 66 ] | 67 ] |
| 67 deps = [ | 68 deps = [ |
| 68 ":sessions", | 69 ":sessions", |
| 69 ] | 70 ] |
| 70 } | 71 } |
| 71 | 72 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 testonly = true | 109 testonly = true |
| 109 sources = [ | 110 sources = [ |
| 110 "//ios/chrome/test/data/sessions/corrupted.plist", | 111 "//ios/chrome/test/data/sessions/corrupted.plist", |
| 111 "//ios/chrome/test/data/sessions/session_m57.plist", | 112 "//ios/chrome/test/data/sessions/session_m57.plist", |
| 112 "//ios/chrome/test/data/sessions/session_m58.plist", | 113 "//ios/chrome/test/data/sessions/session_m58.plist", |
| 113 ] | 114 ] |
| 114 outputs = [ | 115 outputs = [ |
| 115 "{{bundle_resources_dir}}/ios/chrome/test/data/sessions/{{source_file_part}}
", | 116 "{{bundle_resources_dir}}/ios/chrome/test/data/sessions/{{source_file_part}}
", |
| 116 ] | 117 ] |
| 117 } | 118 } |
| OLD | NEW |