Index: components/sessions/sessions_core.gypi |
diff --git a/components/sessions/sessions_core.gypi b/components/sessions/sessions_core.gypi |
new file mode 100644 |
index 0000000000000000000000000000000000000000..203a8e2f288074d758571a10d95dcfb2b8c0f5e3 |
--- /dev/null |
+++ b/components/sessions/sessions_core.gypi |
@@ -0,0 +1,36 @@ |
+# Copyright (c) 2013 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. |
+ |
+{ |
+ 'dependencies': [ |
+ '<(DEPTH)/base/base.gyp:base', |
+ '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations', |
+ '../content/content.gyp:content_browser', |
+ '../skia/skia.gyp:skia', |
+ '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
+ '../ui/base/ui_base.gyp:ui_base', |
+ '../url/url.gyp:url_lib', |
+ ], |
+ 'include_dirs': [ |
+ '..', |
+ ], |
+ 'defines': [ |
+ 'SESSIONS_IMPLEMENTATION', |
+ ], |
+ 'sources': [ |
+ # Note: sources list duplicated in GN build. |
+ 'core/serialized_navigation_driver.h', |
+ 'serialized_navigation_entry.cc', |
+ 'serialized_navigation_entry.h', |
+ 'session_id.cc', |
+ 'session_id.h', |
+ ], |
+ 'conditions': [ |
+ ['android_webview_build == 0', { |
+ 'dependencies': [ |
+ '../sync/sync.gyp:sync', |
+ ] |
+ }], |
+ ], |
+} |