| 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" ] |
| 11 } | 11 } |
| 12 | 12 |
| 13 if (!is_ios) { | 13 if (!is_ios) { |
| 14 # GYP version: components/sessions.gypi:sessions_content | 14 # GYP version: components/sessions.gypi:sessions_content |
| 15 component("sessions") { | 15 component("sessions") { |
| 16 sources = [ | 16 sources = [ |
| 17 "content/content_serialized_navigation_builder.cc", | 17 "content/content_serialized_navigation_builder.cc", |
| 18 "content/content_serialized_navigation_builder.h", | 18 "content/content_serialized_navigation_builder.h", |
| 19 "content/content_serialized_navigation_driver.cc", | 19 "content/content_serialized_navigation_driver.cc", |
| 20 "content/content_serialized_navigation_driver.h", | 20 "content/content_serialized_navigation_driver.h", |
| 21 "content/content_tab_client_data.cc", |
| 22 "content/content_tab_client_data.h", |
| 21 ] | 23 ] |
| 22 | 24 |
| 23 configs += [ ":implementation" ] | 25 configs += [ ":implementation" ] |
| 24 | 26 |
| 25 public_deps = [ | 27 public_deps = [ |
| 26 ":shared", | 28 ":shared", |
| 27 ] | 29 ] |
| 28 | 30 |
| 29 deps = [ | 31 deps = [ |
| 30 ":shared", | 32 ":shared", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 ] | 139 ] |
| 138 deps = [ | 140 deps = [ |
| 139 ":sessions", | 141 ":sessions", |
| 140 ":test_support", | 142 ":test_support", |
| 141 "//base/test:test_support", | 143 "//base/test:test_support", |
| 142 "//testing/gtest", | 144 "//testing/gtest", |
| 143 "//third_party/protobuf:protobuf_lite", | 145 "//third_party/protobuf:protobuf_lite", |
| 144 ] | 146 ] |
| 145 } | 147 } |
| 146 } | 148 } |
| OLD | NEW |