| 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 component("sessions") { | 14 component("sessions") { |
| 15 sources = [ | 15 sources = [ |
| 16 "content/content_live_tab.cc", | 16 "content/content_live_tab.cc", |
| 17 "content/content_live_tab.h", | 17 "content/content_live_tab.h", |
| 18 "content/content_platform_specific_tab_data.cc", | 18 "content/content_platform_specific_tab_data.cc", |
| 19 "content/content_platform_specific_tab_data.h", | 19 "content/content_platform_specific_tab_data.h", |
| 20 "content/content_record_password_state.cc", | 20 "content/content_record_password_state.cc", |
| 21 "content/content_record_password_state.h", | 21 "content/content_record_password_state.h", |
| 22 "content/content_serialized_navigation_builder.cc", | 22 "content/content_serialized_navigation_builder.cc", |
| 23 "content/content_serialized_navigation_builder.h", | 23 "content/content_serialized_navigation_builder.h", |
| 24 "content/content_serialized_navigation_driver.cc", | 24 "content/content_serialized_navigation_driver.cc", |
| 25 "content/content_serialized_navigation_driver.h", | 25 "content/content_serialized_navigation_driver.h", |
| 26 "content/extended_info_handler.h", |
| 26 ] | 27 ] |
| 27 | 28 |
| 28 configs += [ ":implementation" ] | 29 configs += [ ":implementation" ] |
| 29 | 30 |
| 30 public_deps = [ | 31 public_deps = [ |
| 31 ":shared", | 32 ":shared", |
| 32 "//content/public/browser", | 33 "//content/public/browser", |
| 33 ] | 34 ] |
| 34 | 35 |
| 35 deps = [ | 36 deps = [ |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 "//components/sync", | 185 "//components/sync", |
| 185 "//testing/gtest", | 186 "//testing/gtest", |
| 186 "//ui/base", # For page transition types. | 187 "//ui/base", # For page transition types. |
| 187 "//url", | 188 "//url", |
| 188 ] | 189 ] |
| 189 | 190 |
| 190 if (!is_ios) { | 191 if (!is_ios) { |
| 191 deps += [ "//content/public/common" ] | 192 deps += [ "//content/public/common" ] |
| 192 } | 193 } |
| 193 } | 194 } |
| OLD | NEW |