| 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("tabs") { | 5 source_set("tabs") { |
| 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", |
| 21 "web_state_list_serialization.mm", |
| 20 "web_state_opener.h", | 22 "web_state_opener.h", |
| 21 "web_state_opener.mm", | 23 "web_state_opener.mm", |
| 22 ] | 24 ] |
| 23 deps = [ | 25 deps = [ |
| 24 "//base", | 26 "//base", |
| 25 "//ios/web", | 27 "//ios/web", |
| 26 "//ui/base", | 28 "//ui/base", |
| 27 ] | 29 ] |
| 28 libs = [ "Foundation.framework" ] | 30 libs = [ "Foundation.framework" ] |
| 29 configs += [ "//build/config/compiler:enable_arc" ] | 31 configs += [ "//build/config/compiler:enable_arc" ] |
| (...skipping 10 matching lines...) Expand all Loading... |
| 40 "//base", | 42 "//base", |
| 41 ] | 43 ] |
| 42 configs += [ "//build/config/compiler:enable_arc" ] | 44 configs += [ "//build/config/compiler:enable_arc" ] |
| 43 } | 45 } |
| 44 | 46 |
| 45 source_set("unit_tests") { | 47 source_set("unit_tests") { |
| 46 testonly = true | 48 testonly = true |
| 47 sources = [ | 49 sources = [ |
| 48 "web_state_list_fast_enumeration_helper_unittest.mm", | 50 "web_state_list_fast_enumeration_helper_unittest.mm", |
| 49 "web_state_list_order_controller_unittest.mm", | 51 "web_state_list_order_controller_unittest.mm", |
| 52 "web_state_list_serialization_unittest.mm", |
| 50 "web_state_list_unittest.mm", | 53 "web_state_list_unittest.mm", |
| 51 "web_state_opener_unittest.mm", | 54 "web_state_opener_unittest.mm", |
| 52 ] | 55 ] |
| 53 deps = [ | 56 deps = [ |
| 54 ":tabs", | 57 ":tabs", |
| 55 ":test_support", | 58 ":test_support", |
| 56 "//base", | 59 "//base", |
| 60 "//ios/web", |
| 57 "//ios/web:test_support", | 61 "//ios/web:test_support", |
| 58 "//net", | 62 "//net", |
| 59 "//testing/gtest", | 63 "//testing/gtest", |
| 60 "//ui/base", | 64 "//ui/base", |
| 61 "//url", | 65 "//url", |
| 62 ] | 66 ] |
| 63 configs += [ "//build/config/compiler:enable_arc" ] | 67 configs += [ "//build/config/compiler:enable_arc" ] |
| 64 } | 68 } |
| OLD | NEW |