OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/features.gni") |
| 6 import("//third_party/protobuf/proto_library.gni") |
| 7 import("//tools/grit/grit_rule.gni") |
| 8 |
| 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") |
| 11 } |
| 12 |
| 13 source_set("core") { |
| 14 defines = [ "SESSIONS_IMPLEMENTATION" ] |
| 15 |
| 16 sources = [ |
| 17 "serialized_navigation_driver.h", |
| 18 "../serialized_navigation_entry.cc", |
| 19 "../serialized_navigation_entry.h", |
| 20 "../session_id.cc", |
| 21 "../session_id.h", |
| 22 ] |
| 23 |
| 24 deps = [ |
| 25 "//base", |
| 26 "//base/third_party/dynamic_annotations", |
| 27 "//skia", |
| 28 "//ui/base", |
| 29 "//url", |
| 30 ] |
| 31 |
| 32 if (!is_android || !is_android_webview_build) { |
| 33 deps += [ "//sync" ] |
| 34 } |
| 35 } |
OLD | NEW |