| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "//testing/gtest", | 85 "//testing/gtest", |
| 86 "//third_party/ocmock", | 86 "//third_party/ocmock", |
| 87 ] | 87 ] |
| 88 } | 88 } |
| 89 | 89 |
| 90 bundle_data("resources_unit_tests") { | 90 bundle_data("resources_unit_tests") { |
| 91 visibility = [ ":unit_tests" ] | 91 visibility = [ ":unit_tests" ] |
| 92 testonly = true | 92 testonly = true |
| 93 sources = [ | 93 sources = [ |
| 94 "//ios/chrome/test/data/sessions/corrupted.plist", | 94 "//ios/chrome/test/data/sessions/corrupted.plist", |
| 95 "//ios/chrome/test/data/sessions/session_m57.plist", |
| 96 "//ios/chrome/test/data/sessions/session_m58.plist", |
| 95 ] | 97 ] |
| 96 outputs = [ | 98 outputs = [ |
| 97 "{{bundle_resources_dir}}/ios/chrome/test/data/sessions/{{source_file_part}}
", | 99 "{{bundle_resources_dir}}/ios/chrome/test/data/sessions/{{source_file_part}}
", |
| 98 ] | 100 ] |
| 99 } | 101 } |
| OLD | NEW |