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

Side by Side Diff: components/sessions.gypi

Issue 480883002: Move session_id.{cc,h} from chrome/browser/sessions to components/sessions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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_browser.gypi ('k') | components/sessions/BUILD.gn » ('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 # GN version: //components/sessions 8 # GN version: //components/sessions
9 'target_name': 'sessions', 9 'target_name': 'sessions',
10 'type': '<(component)', 10 'type': '<(component)',
11 'dependencies': [ 11 'dependencies': [
12 '../base/base.gyp:base', 12 '../base/base.gyp:base',
13 '../content/content.gyp:content_browser', 13 '../content/content.gyp:content_browser',
14 '../skia/skia.gyp:skia', 14 '../skia/skia.gyp:skia',
15 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 15 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
16 '../url/url.gyp:url_lib', 16 '../url/url.gyp:url_lib',
17 ], 17 ],
18 'include_dirs': [ 18 'include_dirs': [
19 '..', 19 '..',
20 ], 20 ],
21 'defines': [ 21 'defines': [
22 'SESSIONS_IMPLEMENTATION', 22 'SESSIONS_IMPLEMENTATION',
23 ], 23 ],
24 'sources': [ 24 'sources': [
25 # Note: sources list duplicated in GN build. 25 # Note: sources list duplicated in GN build.
26 'sessions/serialized_navigation_entry.cc', 26 'sessions/serialized_navigation_entry.cc',
27 'sessions/serialized_navigation_entry.h', 27 'sessions/serialized_navigation_entry.h',
28 'sessions/session_id.cc',
29 'sessions/session_id.h',
28 ], 30 ],
29 'conditions': [ 31 'conditions': [
30 ['android_webview_build == 0', { 32 ['android_webview_build == 0', {
31 'dependencies': [ 33 'dependencies': [
32 '../sync/sync.gyp:sync', 34 '../sync/sync.gyp:sync',
33 ] 35 ]
34 }], 36 }],
35 ], 37 ],
36 }, 38 },
37 { 39 {
(...skipping 16 matching lines...) Expand all
54 'conditions': [ 56 'conditions': [
55 ['android_webview_build == 0', { 57 ['android_webview_build == 0', {
56 'dependencies': [ 58 'dependencies': [
57 '../sync/sync.gyp:sync', 59 '../sync/sync.gyp:sync',
58 ] 60 ]
59 }], 61 }],
60 ], 62 ],
61 }, 63 },
62 ], 64 ],
63 } 65 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/sessions/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698