| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 ":shared", | 44 ":shared", |
| 45 "//base", | 45 "//base", |
| 46 | 46 |
| 47 # '../ios/web/ios_web.gyp:ios_web', TODO(GYP) iOS. | 47 # '../ios/web/ios_web.gyp:ios_web', TODO(GYP) iOS. |
| 48 ] | 48 ] |
| 49 } | 49 } |
| 50 } | 50 } |
| 51 | 51 |
| 52 # Sources shared between the content and iOS implementations. | 52 # Sources shared between the content and iOS implementations. |
| 53 source_set("shared") { | 53 source_set("shared") { |
| 54 visibility = [ ":*" ] | |
| 55 | |
| 56 sources = [ | 54 sources = [ |
| 57 "base_session_service.cc", | 55 "base_session_service.cc", |
| 58 "base_session_service.h", | 56 "base_session_service.h", |
| 59 "base_session_service_commands.cc", | 57 "base_session_service_commands.cc", |
| 60 "base_session_service_commands.h", | 58 "base_session_service_commands.h", |
| 61 "base_session_service_delegate.h", | 59 "base_session_service_delegate.h", |
| 62 "core/serialized_navigation_driver.h", | 60 "core/serialized_navigation_driver.h", |
| 63 "serialized_navigation_entry.cc", | 61 "serialized_navigation_entry.cc", |
| 64 "serialized_navigation_entry.h", | 62 "serialized_navigation_entry.h", |
| 65 "session_backend.cc", | 63 "session_backend.cc", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 "session_types_unittest.cc", | 118 "session_types_unittest.cc", |
| 121 ] | 119 ] |
| 122 deps = [ | 120 deps = [ |
| 123 ":sessions", | 121 ":sessions", |
| 124 "//base/test:test_support", | 122 "//base/test:test_support", |
| 125 "//testing/gtest", | 123 "//testing/gtest", |
| 126 "//third_party/protobuf:protobuf_lite", | 124 "//third_party/protobuf:protobuf_lite", |
| 127 ] | 125 ] |
| 128 } | 126 } |
| 129 } | 127 } |
| OLD | NEW |