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

Side by Side Diff: components/sessions.gypi

Issue 1038013002: Replace tabs with spaces in gyp file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 | « no previous file | no next file » | 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. 7 # Core sources shared by sessions_content and sessions_ios.
8 # 8 #
9 # TODO(rohitrao): We are including these sources directly into each 9 # TODO(rohitrao): We are including these sources directly into each
10 # individual target in order to avoid the complications associated with 10 # individual target in order to avoid the complications associated with
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 ] 67 ]
68 }], 68 }],
69 ], 69 ],
70 }, 70 },
71 ], 71 ],
72 72
73 # Platform-specific targets. 73 # Platform-specific targets.
74 'conditions': [ 74 'conditions': [
75 ['OS!="ios"', { 75 ['OS!="ios"', {
76 'targets': [ 76 'targets': [
77 » { 77 {
78 » # GN version: //components/sessions:sessions_content 78 # GN version: //components/sessions:sessions_content
79 » 'target_name': 'sessions_content', 79 'target_name': 'sessions_content',
80 » 'type': '<(component)', 80 'type': '<(component)',
81 » 'dependencies': [ 81 'dependencies': [
82 » '../base/base.gyp:base', 82 '../base/base.gyp:base',
83 » '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 83 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
84 » '../content/content.gyp:content_browser', 84 '../content/content.gyp:content_browser',
85 » '../skia/skia.gyp:skia', 85 '../skia/skia.gyp:skia',
86 » '../third_party/protobuf/protobuf.gyp:protobuf_lite', 86 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
87 » '../ui/base/ui_base.gyp:ui_base', 87 '../ui/base/ui_base.gyp:ui_base',
88 '../ui/gfx/gfx.gyp:gfx_geometry', 88 '../ui/gfx/gfx.gyp:gfx_geometry',
89 » '../url/url.gyp:url_lib', 89 '../url/url.gyp:url_lib',
90 » ], 90 ],
91 » 'include_dirs': [ 91 'include_dirs': [
92 » '..', 92 '..',
93 » ], 93 ],
94 » 'defines': [ 94 'defines': [
95 » 'SESSIONS_IMPLEMENTATION', 95 'SESSIONS_IMPLEMENTATION',
96 » ], 96 ],
97 » 'sources': [ 97 'sources': [
98 » # Note: sources list duplicated in GN build. 98 # Note: sources list duplicated in GN build.
99 » '<@(sessions_core_sources)', 99 '<@(sessions_core_sources)',
100 100
101 » 'sessions/content/content_serialized_navigation_builder.cc', 101 'sessions/content/content_serialized_navigation_builder.cc',
102 » 'sessions/content/content_serialized_navigation_builder.h', 102 'sessions/content/content_serialized_navigation_builder.h',
103 » 'sessions/content/content_serialized_navigation_driver.cc', 103 'sessions/content/content_serialized_navigation_driver.cc',
104 » 'sessions/content/content_serialized_navigation_driver.h', 104 'sessions/content/content_serialized_navigation_driver.h',
105 » ], 105 ],
106 » 'conditions': [ 106 'conditions': [
107 » ['android_webview_build == 0', { 107 ['android_webview_build == 0', {
108 » 'dependencies': [ 108 'dependencies': [
109 » » '../sync/sync.gyp:sync', 109 '../sync/sync.gyp:sync',
110 » ] 110 ]
111 » }], 111 }],
112 » ], 112 ],
113 » }, 113 },
114 ], 114 ],
115 }, { # OS==ios 115 }, { # OS==ios
116 'targets': [ 116 'targets': [
117 » { 117 {
118 » 'target_name': 'sessions_ios', 118 'target_name': 'sessions_ios',
119 » 'type': 'static_library', 119 'type': 'static_library',
120 » 'dependencies': [ 120 'dependencies': [
121 » '../base/base.gyp:base', 121 '../base/base.gyp:base',
122 '../ios/web/ios_web.gyp:ios_web', 122 '../ios/web/ios_web.gyp:ios_web',
123 '../sync/sync.gyp:sync', 123 '../sync/sync.gyp:sync',
124 » '../third_party/protobuf/protobuf.gyp:protobuf_lite', 124 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
125 » '../ui/base/ui_base.gyp:ui_base', 125 '../ui/base/ui_base.gyp:ui_base',
126 '../ui/gfx/gfx.gyp:gfx_geometry', 126 '../ui/gfx/gfx.gyp:gfx_geometry',
127 » '../url/url.gyp:url_lib', 127 '../url/url.gyp:url_lib',
128 » ], 128 ],
129 » 'include_dirs': [ 129 'include_dirs': [
130 » '..', 130 '..',
131 » ], 131 ],
132 » 'defines': [ 132 'defines': [
133 » 'SESSIONS_IMPLEMENTATION', 133 'SESSIONS_IMPLEMENTATION',
134 » ], 134 ],
135 » 'sources': [ 135 'sources': [
136 » '<@(sessions_core_sources)', 136 '<@(sessions_core_sources)',
137 137
138 » 'sessions/ios/ios_serialized_navigation_builder.cc', 138 'sessions/ios/ios_serialized_navigation_builder.cc',
139 » 'sessions/ios/ios_serialized_navigation_builder.h', 139 'sessions/ios/ios_serialized_navigation_builder.h',
140 » 'sessions/ios/ios_serialized_navigation_driver.cc', 140 'sessions/ios/ios_serialized_navigation_driver.cc',
141 » 'sessions/ios/ios_serialized_navigation_driver.h', 141 'sessions/ios/ios_serialized_navigation_driver.h',
142 » ], 142 ],
143 » }, 143 },
144 ], 144 ],
145 }], 145 }],
146 ], 146 ],
147 147
148 } 148 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698