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

Side by Side Diff: sync/sync.gyp

Issue 11414013: Depend on stored sync session GUID for Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 8 years, 1 month 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 # The core sync library. 10 # The core sync library.
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 'util/get_session_name_ios.mm', 181 'util/get_session_name_ios.mm',
182 'util/get_session_name_ios.h', 182 'util/get_session_name_ios.h',
183 'util/get_session_name_mac.mm', 183 'util/get_session_name_mac.mm',
184 'util/get_session_name_mac.h', 184 'util/get_session_name_mac.h',
185 'util/get_session_name_win.cc', 185 'util/get_session_name_win.cc',
186 'util/get_session_name_win.h', 186 'util/get_session_name_win.h',
187 'util/logging.cc', 187 'util/logging.cc',
188 'util/logging.h', 188 'util/logging.h',
189 'util/nigori.cc', 189 'util/nigori.cc',
190 'util/nigori.h', 190 'util/nigori.h',
191 'util/session_utils_android.cc',
192 'util/session_utils_android.h',
193 'util/time.cc', 191 'util/time.cc',
194 'util/time.h', 192 'util/time.h',
195 ], 193 ],
196 }, 194 },
197 195
198 # The sync notifications library. 196 # The sync notifications library.
199 { 197 {
200 'target_name': 'sync_notifier', 198 'target_name': 'sync_notifier',
201 'type': 'static_library', 199 'type': 'static_library',
202 'variables': { 'enable_wexit_time_destructors': 1, }, 200 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 762 matching lines...) Expand 10 before | Expand all | Expand 10 after
965 'variables': { 963 'variables': {
966 'test_suite_name': 'sync_unit_tests', 964 'test_suite_name': 'sync_unit_tests',
967 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 965 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
968 }, 966 },
969 'includes': [ '../build/apk_test.gypi' ], 967 'includes': [ '../build/apk_test.gypi' ],
970 }, 968 },
971 ], 969 ],
972 }], 970 }],
973 ], 971 ],
974 } 972 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698