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

Side by Side Diff: components/sessions.gypi

Issue 151023002: Move the rest of webkit/glue into content/common (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rm webkit_glue.gyp Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | components/web_contents_delegate_android.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'sessions', 8 'target_name': 'sessions',
9 'type': '<(component)', 9 'type': '<(component)',
10 'dependencies': [ 10 'dependencies': [
11 '../base/base.gyp:base', 11 '../base/base.gyp:base',
12 '../content/content.gyp:content_browser', 12 '../content/content.gyp:content_browser',
13 '../skia/skia.gyp:skia', 13 '../skia/skia.gyp:skia',
14 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 14 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
15 '../url/url.gyp:url_lib', 15 '../url/url.gyp:url_lib',
16 ], 16 ],
17 'include_dirs': [ 17 'include_dirs': [
18 '..', 18 '..',
19 ], 19 ],
20 'defines': [ 20 'defines': [
21 'SESSIONS_IMPLEMENTATION', 21 'SESSIONS_IMPLEMENTATION',
22 ], 22 ],
23 'sources': [ 23 'sources': [
24 'sessions/serialized_navigation_entry.cc', 24 'sessions/serialized_navigation_entry.cc',
25 'sessions/serialized_navigation_entry.h', 25 'sessions/serialized_navigation_entry.h',
26 ], 26 ],
27 'conditions': [ 27 'conditions': [
28 ['OS != "ios" and chrome_multiple_dll != 1', {
29 'dependencies': [
30 '../webkit/glue/webkit_glue.gyp:glue',
31 ]
32 }],
33 ['android_webview_build == 0', { 28 ['android_webview_build == 0', {
34 'dependencies': [ 29 'dependencies': [
35 '../sync/sync.gyp:sync', 30 '../sync/sync.gyp:sync',
36 ] 31 ]
37 }], 32 }],
38 ], 33 ],
39 }, 34 },
40 { 35 {
41 'target_name': 'sessions_test_support', 36 'target_name': 'sessions_test_support',
42 'type': 'static_library', 37 'type': 'static_library',
(...skipping 12 matching lines...) Expand all
55 'conditions': [ 50 'conditions': [
56 ['android_webview_build == 0', { 51 ['android_webview_build == 0', {
57 'dependencies': [ 52 'dependencies': [
58 '../sync/sync.gyp:sync', 53 '../sync/sync.gyp:sync',
59 ] 54 ]
60 }], 55 }],
61 ], 56 ],
62 }, 57 },
63 ], 58 ],
64 } 59 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | components/web_contents_delegate_android.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698