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

Side by Side Diff: components/sessions/content/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("content") {
14 defines = [ "SESSIONS_IMPLEMENTATION" ]
15
16 sources = [
17 "content_serialized_navigation_builder.cc",
18 "content_serialized_navigation_builder.h",
19 "content_serialized_navigation_driver.cc",
20 "content_serialized_navigation_driver.h",
21 ]
22
23 deps = [
24 "//base",
25 "//base/third_party/dynamic_annotations",
26 "//content/public/browser",
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