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" ] |
+ } |
+} |