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

Side by Side Diff: components/sessions.gypi

Issue 1361613002: Move all core files in //components/sessions into core/ subdir (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 3 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
« no previous file with comments | « components/omnibox/browser/omnibox_log.h ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 'variables': { 6 'variables': {
7 # Core sources shared by sessions_content and sessions_ios. These can't 7 # Core sources shared by sessions_content and sessions_ios. These can't
8 # be a separate shared library since one symbol is implemented higher up in 8 # be a separate shared library since one symbol is implemented higher up in
9 # the sessions_content/ios layer. 9 # the sessions_content/ios layer.
10 'sessions_core_sources': [ 10 'sessions_core_sources': [
11 'sessions/base_session_service.cc', 11 'sessions/core/base_session_service.cc',
12 'sessions/base_session_service.h', 12 'sessions/core/base_session_service.h',
13 'sessions/base_session_service_commands.cc', 13 'sessions/core/base_session_service_commands.cc',
14 'sessions/base_session_service_commands.h', 14 'sessions/core/base_session_service_commands.h',
15 'sessions/base_session_service_delegate.h', 15 'sessions/core/base_session_service_delegate.h',
16 'sessions/core/live_tab.cc', 16 'sessions/core/live_tab.cc',
17 'sessions/core/live_tab.h', 17 'sessions/core/live_tab.h',
18 'sessions/core/persistent_tab_restore_service.cc', 18 'sessions/core/persistent_tab_restore_service.cc',
19 'sessions/core/persistent_tab_restore_service.h', 19 'sessions/core/persistent_tab_restore_service.h',
20 'sessions/core/serialized_navigation_driver.h', 20 'sessions/core/serialized_navigation_driver.h',
21 'sessions/core/serialized_navigation_entry.cc',
22 'sessions/core/serialized_navigation_entry.h',
23 'sessions/core/session_backend.cc',
24 'sessions/core/session_backend.h',
25 'sessions/core/session_command.cc',
26 'sessions/core/session_command.h',
21 'sessions/core/session_constants.cc', 27 'sessions/core/session_constants.cc',
22 'sessions/core/session_constants.h', 28 'sessions/core/session_constants.h',
29 'sessions/core/session_id.cc',
30 'sessions/core/session_id.h',
31 'sessions/core/session_service_commands.cc',
32 'sessions/core/session_service_commands.h',
33 'sessions/core/session_types.cc',
34 'sessions/core/session_types.h',
23 'sessions/core/tab_restore_service.cc', 35 'sessions/core/tab_restore_service.cc',
24 'sessions/core/tab_restore_service.h', 36 'sessions/core/tab_restore_service.h',
25 'sessions/core/tab_restore_service_client.cc', 37 'sessions/core/tab_restore_service_client.cc',
26 'sessions/core/tab_restore_service_client.h', 38 'sessions/core/tab_restore_service_client.h',
27 'sessions/core/tab_restore_service_delegate.h', 39 'sessions/core/tab_restore_service_delegate.h',
28 'sessions/core/tab_restore_service_helper.cc', 40 'sessions/core/tab_restore_service_helper.cc',
29 'sessions/core/tab_restore_service_helper.h', 41 'sessions/core/tab_restore_service_helper.h',
30 'sessions/core/tab_restore_service_observer.h', 42 'sessions/core/tab_restore_service_observer.h',
31 'sessions/serialized_navigation_entry.cc',
32 'sessions/serialized_navigation_entry.h',
33 'sessions/session_backend.cc',
34 'sessions/session_backend.h',
35 'sessions/session_command.cc',
36 'sessions/session_command.h',
37 'sessions/session_id.cc',
38 'sessions/session_id.h',
39 'sessions/session_service_commands.cc',
40 'sessions/session_service_commands.h',
41 'sessions/session_types.cc',
42 'sessions/session_types.h',
43 ], 43 ],
44 }, 44 },
45 'targets': [ 45 'targets': [
46 { 46 {
47 # GN version: //components/sessions:test_support 47 # GN version: //components/sessions:test_support
48 'target_name': 'sessions_test_support', 48 'target_name': 'sessions_test_support',
49 'type': 'static_library', 49 'type': 'static_library',
50 'dependencies': [ 50 'dependencies': [
51 '../skia/skia.gyp:skia', 51 '../skia/skia.gyp:skia',
52 '../sync/sync.gyp:sync', 52 '../sync/sync.gyp:sync',
53 '../testing/gtest.gyp:gtest', 53 '../testing/gtest.gyp:gtest',
54 ], 54 ],
55 'include_dirs': [ 55 'include_dirs': [
56 '..', 56 '..',
57 ], 57 ],
58 'sources': [ 58 'sources': [
59 # Note: sources list duplicated in GN build. 59 # Note: sources list duplicated in GN build.
60 'sessions/serialized_navigation_entry_test_helper.cc', 60 'sessions/core/serialized_navigation_entry_test_helper.cc',
61 'sessions/serialized_navigation_entry_test_helper.h', 61 'sessions/core/serialized_navigation_entry_test_helper.h',
62 ], 62 ],
63 'conditions': [ 63 'conditions': [
64 ['OS!="ios" and OS!="android"', { 64 ['OS!="ios" and OS!="android"', {
65 'sources': [ 65 'sources': [
66 'sessions/base_session_service_test_helper.cc', 66 'sessions/core/base_session_service_test_helper.cc',
67 'sessions/base_session_service_test_helper.h', 67 'sessions/core/base_session_service_test_helper.h',
68 ], 68 ],
69 }], 69 }],
70 ], 70 ],
71 }, 71 },
72 ], 72 ],
73 73
74 # Platform-specific targets. 74 # Platform-specific targets.
75 'conditions': [ 75 'conditions': [
76 ['OS!="ios"', { 76 ['OS!="ios"', {
77 'targets': [ 77 'targets': [
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 'sessions/ios/ios_serialized_navigation_builder.h', 151 'sessions/ios/ios_serialized_navigation_builder.h',
152 'sessions/ios/ios_serialized_navigation_driver.cc', 152 'sessions/ios/ios_serialized_navigation_driver.cc',
153 'sessions/ios/ios_serialized_navigation_driver.h', 153 'sessions/ios/ios_serialized_navigation_driver.h',
154 ], 154 ],
155 }, 155 },
156 ], 156 ],
157 }], 157 }],
158 ], 158 ],
159 159
160 } 160 }
OLDNEW
« no previous file with comments | « components/omnibox/browser/omnibox_log.h ('k') | components/sessions/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698