OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 if (is_android) { | 5 if (is_android) { |
6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
7 } | 7 } |
8 | 8 |
9 config("implementation") { | 9 config("implementation") { |
10 defines = [ "SESSIONS_IMPLEMENTATION" ] | 10 defines = [ "SESSIONS_IMPLEMENTATION" ] |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 "base_session_service_test_helper.cc", | 117 "base_session_service_test_helper.cc", |
118 "base_session_service_test_helper.h", | 118 "base_session_service_test_helper.h", |
119 ] | 119 ] |
120 } | 120 } |
121 } | 121 } |
122 | 122 |
123 if (!is_ios && !is_android) { | 123 if (!is_ios && !is_android) { |
124 source_set("unit_tests") { | 124 source_set("unit_tests") { |
125 testonly = true | 125 testonly = true |
126 sources = [ | 126 sources = [ |
| 127 "content/content_serialized_navigation_builder_unittest.cc", |
| 128 "content/content_serialized_navigation_driver_unittest.cc", |
| 129 "ios/ios_serialized_navigation_builder_unittest.cc", |
| 130 "ios/ios_serialized_navigation_driver_unittest.cc", |
| 131 "serialized_navigation_entry_unittest.cc", |
127 "session_backend_unittest.cc", | 132 "session_backend_unittest.cc", |
128 "session_types_unittest.cc", | 133 "session_types_unittest.cc", |
129 ] | 134 ] |
130 deps = [ | 135 deps = [ |
131 ":sessions", | 136 ":sessions", |
| 137 ":test_support", |
132 "//base/test:test_support", | 138 "//base/test:test_support", |
133 "//testing/gtest", | 139 "//testing/gtest", |
134 "//third_party/protobuf:protobuf_lite", | 140 "//third_party/protobuf:protobuf_lite", |
135 ] | 141 ] |
136 } | 142 } |
137 } | 143 } |
OLD | NEW |