| 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_serialisation.h", |
| 21 "web_state_list_serialisation.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 25 matching lines...) Expand all Loading... |
| 55 ":test_support", | 57 ":test_support", |
| 56 "//base", | 58 "//base", |
| 57 "//ios/web:test_support", | 59 "//ios/web:test_support", |
| 58 "//net", | 60 "//net", |
| 59 "//testing/gtest", | 61 "//testing/gtest", |
| 60 "//ui/base", | 62 "//ui/base", |
| 61 "//url", | 63 "//url", |
| 62 ] | 64 ] |
| 63 configs += [ "//build/config/compiler:enable_arc" ] | 65 configs += [ "//build/config/compiler:enable_arc" ] |
| 64 } | 66 } |
| OLD | NEW |