OLD | NEW |
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': [ |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 '../base/base.gyp:base', | 83 '../base/base.gyp:base', |
84 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', | 84 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', |
85 '../content/content.gyp:content_browser', | 85 '../content/content.gyp:content_browser', |
86 '../skia/skia.gyp:skia', | 86 '../skia/skia.gyp:skia', |
87 '../sync/sync.gyp:sync', | 87 '../sync/sync.gyp:sync', |
88 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 88 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
89 '../ui/base/ui_base.gyp:ui_base', | 89 '../ui/base/ui_base.gyp:ui_base', |
90 '../ui/gfx/gfx.gyp:gfx_geometry', | 90 '../ui/gfx/gfx.gyp:gfx_geometry', |
91 '../url/url.gyp:url_lib', | 91 '../url/url.gyp:url_lib', |
92 'keyed_service_core', | 92 'keyed_service_core', |
| 93 'variations', |
93 ], | 94 ], |
94 'include_dirs': [ | 95 'include_dirs': [ |
95 '..', | 96 '..', |
96 ], | 97 ], |
97 'defines': [ | 98 'defines': [ |
98 'SESSIONS_IMPLEMENTATION', | 99 'SESSIONS_IMPLEMENTATION', |
99 ], | 100 ], |
100 'sources': [ | 101 'sources': [ |
101 # Note: sources list duplicated in GN build. | 102 # Note: sources list duplicated in GN build. |
102 '<@(sessions_core_sources)', | 103 '<@(sessions_core_sources)', |
(...skipping 28 matching lines...) Expand all Loading... |
131 'type': 'static_library', | 132 'type': 'static_library', |
132 'dependencies': [ | 133 'dependencies': [ |
133 '../base/base.gyp:base', | 134 '../base/base.gyp:base', |
134 '../ios/web/ios_web.gyp:ios_web', | 135 '../ios/web/ios_web.gyp:ios_web', |
135 '../sync/sync.gyp:sync', | 136 '../sync/sync.gyp:sync', |
136 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 137 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
137 '../ui/base/ui_base.gyp:ui_base', | 138 '../ui/base/ui_base.gyp:ui_base', |
138 '../ui/gfx/gfx.gyp:gfx_geometry', | 139 '../ui/gfx/gfx.gyp:gfx_geometry', |
139 '../url/url.gyp:url_lib', | 140 '../url/url.gyp:url_lib', |
140 'keyed_service_core', | 141 'keyed_service_core', |
| 142 'variations', |
141 ], | 143 ], |
142 'include_dirs': [ | 144 'include_dirs': [ |
143 '..', | 145 '..', |
144 ], | 146 ], |
145 'defines': [ | 147 'defines': [ |
146 'SESSIONS_IMPLEMENTATION', | 148 'SESSIONS_IMPLEMENTATION', |
147 ], | 149 ], |
148 'sources': [ | 150 'sources': [ |
149 '<@(sessions_core_sources)', | 151 '<@(sessions_core_sources)', |
150 | 152 |
151 'sessions/ios/ios_live_tab.cc', | 153 'sessions/ios/ios_live_tab.cc', |
152 'sessions/ios/ios_live_tab.h', | 154 'sessions/ios/ios_live_tab.h', |
153 'sessions/ios/ios_serialized_navigation_builder.cc', | 155 'sessions/ios/ios_serialized_navigation_builder.cc', |
154 'sessions/ios/ios_serialized_navigation_builder.h', | 156 'sessions/ios/ios_serialized_navigation_builder.h', |
155 'sessions/ios/ios_serialized_navigation_driver.cc', | 157 'sessions/ios/ios_serialized_navigation_driver.cc', |
156 'sessions/ios/ios_serialized_navigation_driver.h', | 158 'sessions/ios/ios_serialized_navigation_driver.h', |
157 ], | 159 ], |
158 }, | 160 }, |
159 ], | 161 ], |
160 }], | 162 }], |
161 ], | 163 ], |
162 | 164 |
163 } | 165 } |
OLD | NEW |