Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(737)

Side by Side Diff: components/sessions/core/BUILD.gn

Issue 673843002: Splits components/sessions into separate core and content targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Clobber. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698