| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 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("web_state_list") { | 5 source_set("web_state_list") { |
| 6 sources = [ | 6 sources = [ |
| 7 "web_state_list.h", | 7 "web_state_list.h", |
| 8 "web_state_list.mm", | 8 "web_state_list.mm", |
| 9 "web_state_list_delegate.h", | 9 "web_state_list_delegate.h", |
| 10 "web_state_list_fast_enumeration_helper.h", | 10 "web_state_list_fast_enumeration_helper.h", |
| 11 "web_state_list_fast_enumeration_helper.mm", | 11 "web_state_list_fast_enumeration_helper.mm", |
| 12 "web_state_list_metrics_observer.h", | 12 "web_state_list_metrics_observer.h", |
| 13 "web_state_list_metrics_observer.mm", | 13 "web_state_list_metrics_observer.mm", |
| 14 "web_state_list_observer.h", | 14 "web_state_list_observer.h", |
| 15 "web_state_list_observer.mm", | 15 "web_state_list_observer.mm", |
| 16 "web_state_list_observer_bridge.h", | 16 "web_state_list_observer_bridge.h", |
| 17 "web_state_list_observer_bridge.mm", | 17 "web_state_list_observer_bridge.mm", |
| 18 "web_state_list_order_controller.h", | 18 "web_state_list_order_controller.h", |
| 19 "web_state_list_order_controller.mm", | 19 "web_state_list_order_controller.mm", |
| 20 "web_state_list_serialization.h", | 20 "web_state_list_serialization.h", |
| 21 "web_state_list_serialization.mm", | 21 "web_state_list_serialization.mm", |
| 22 "web_state_opener.h", | 22 "web_state_opener.h", |
| 23 "web_state_opener.mm", | 23 "web_state_opener.mm", |
| 24 ] | 24 ] |
| 25 deps = [ | 25 deps = [ |
| 26 "//base", | 26 "//base", |
| 27 "//ios/chrome/browser/sessions:serialisation", |
| 27 "//ios/web", | 28 "//ios/web", |
| 28 "//ui/base", | 29 "//ui/base", |
| 29 ] | 30 ] |
| 30 libs = [ "Foundation.framework" ] | 31 libs = [ "Foundation.framework" ] |
| 31 configs += [ "//build/config/compiler:enable_arc" ] | 32 configs += [ "//build/config/compiler:enable_arc" ] |
| 32 } | 33 } |
| 33 | 34 |
| 34 source_set("test_support") { | 35 source_set("test_support") { |
| 35 testonly = true | 36 testonly = true |
| 36 sources = [ | 37 sources = [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 50 "web_state_list_fast_enumeration_helper_unittest.mm", | 51 "web_state_list_fast_enumeration_helper_unittest.mm", |
| 51 "web_state_list_order_controller_unittest.mm", | 52 "web_state_list_order_controller_unittest.mm", |
| 52 "web_state_list_serialization_unittest.mm", | 53 "web_state_list_serialization_unittest.mm", |
| 53 "web_state_list_unittest.mm", | 54 "web_state_list_unittest.mm", |
| 54 "web_state_opener_unittest.mm", | 55 "web_state_opener_unittest.mm", |
| 55 ] | 56 ] |
| 56 deps = [ | 57 deps = [ |
| 57 ":test_support", | 58 ":test_support", |
| 58 ":web_state_list", | 59 ":web_state_list", |
| 59 "//base", | 60 "//base", |
| 61 "//ios/chrome/browser/sessions:serialisation", |
| 60 "//ios/web", | 62 "//ios/web", |
| 61 "//ios/web:test_support", | 63 "//ios/web:test_support", |
| 62 "//net", | 64 "//net", |
| 63 "//testing/gtest", | 65 "//testing/gtest", |
| 64 "//ui/base", | 66 "//ui/base", |
| 65 "//url", | 67 "//url", |
| 66 ] | 68 ] |
| 67 configs += [ "//build/config/compiler:enable_arc" ] | 69 configs += [ "//build/config/compiler:enable_arc" ] |
| 68 } | 70 } |
| OLD | NEW |