| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 source_set("shared") { | 61 source_set("shared") { |
| 62 visibility = [ ":*" ] | 62 visibility = [ ":*" ] |
| 63 | 63 |
| 64 sources = [ | 64 sources = [ |
| 65 "base_session_service.cc", | 65 "base_session_service.cc", |
| 66 "base_session_service.h", | 66 "base_session_service.h", |
| 67 "base_session_service_commands.cc", | 67 "base_session_service_commands.cc", |
| 68 "base_session_service_commands.h", | 68 "base_session_service_commands.h", |
| 69 "base_session_service_delegate.h", | 69 "base_session_service_delegate.h", |
| 70 "core/serialized_navigation_driver.h", | 70 "core/serialized_navigation_driver.h", |
| 71 "core/session_constants.cc", |
| 72 "core/session_constants.h", |
| 73 "core/tab_restore_service_client.h", |
| 71 "serialized_navigation_entry.cc", | 74 "serialized_navigation_entry.cc", |
| 72 "serialized_navigation_entry.h", | 75 "serialized_navigation_entry.h", |
| 73 "session_backend.cc", | 76 "session_backend.cc", |
| 74 "session_backend.h", | 77 "session_backend.h", |
| 75 "session_command.cc", | 78 "session_command.cc", |
| 76 "session_command.h", | 79 "session_command.h", |
| 77 "session_id.cc", | 80 "session_id.cc", |
| 78 "session_id.h", | 81 "session_id.h", |
| 79 "session_service_commands.cc", | 82 "session_service_commands.cc", |
| 80 "session_service_commands.h", | 83 "session_service_commands.h", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 ] | 137 ] |
| 135 deps = [ | 138 deps = [ |
| 136 ":sessions", | 139 ":sessions", |
| 137 ":test_support", | 140 ":test_support", |
| 138 "//base/test:test_support", | 141 "//base/test:test_support", |
| 139 "//testing/gtest", | 142 "//testing/gtest", |
| 140 "//third_party/protobuf:protobuf_lite", | 143 "//third_party/protobuf:protobuf_lite", |
| 141 ] | 144 ] |
| 142 } | 145 } |
| 143 } | 146 } |
| OLD | NEW |