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

Side by Side Diff: components/sessions/sessions_content.gypi

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 (c) 2013 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 {
6 'dependencies': [
7 '../base/base.gyp:base',
8 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
9 '../content/content.gyp:content_browser',
10 '../skia/skia.gyp:skia',
11 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
12 '../ui/base/ui_base.gyp:ui_base',
13 '../url/url.gyp:url_lib',
14 ],
15 'include_dirs': [
16 '..',
17 ],
18 'defines': [
19 'SESSIONS_IMPLEMENTATION',
20 ],
21 'sources': [
22 # Note: sources list duplicated in GN build.
23 'content/content_serialized_navigation_builder.cc',
24 'content/content_serialized_navigation_builder.h',
25 'content/content_serialized_navigation_driver.cc',
26 'content/content_serialized_navigation_driver.h',
27 ],
28 'conditions': [
29 ['android_webview_build == 0', {
30 'dependencies': [
31 '../sync/sync.gyp:sync',
32 ]
33 }],
34 ],
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698