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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: components/sessions/content/BUILD.gn
diff --git a/components/sessions/content/BUILD.gn b/components/sessions/content/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..75731e4cc898df0c7e8f0fb0dbfeec7a2fa3c5b1
--- /dev/null
+++ b/components/sessions/content/BUILD.gn
@@ -0,0 +1,35 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/config/features.gni")
+import("//third_party/protobuf/proto_library.gni")
+import("//tools/grit/grit_rule.gni")
+
+if (is_android) {
+ import("//build/config/android/config.gni")
+}
+
+source_set("content") {
+ defines = [ "SESSIONS_IMPLEMENTATION" ]
+
+ sources = [
+ "content_serialized_navigation_builder.cc",
+ "content_serialized_navigation_builder.h",
+ "content_serialized_navigation_driver.cc",
+ "content_serialized_navigation_driver.h",
+ ]
+
+ deps = [
+ "//base",
+ "//base/third_party/dynamic_annotations",
+ "//content/public/browser",
+ "//skia",
+ "//ui/base",
+ "//url",
+ ]
+
+ if (!is_android || !is_android_webview_build) {
+ deps += [ "//sync" ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698