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

Side by Side Diff: sync/sync.gyp

Issue 10916276: sync: add Google API Key to all ClientToServerMessages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
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 11 matching lines...) Expand all
22 'include_dirs': [ 22 'include_dirs': [
23 '..', 23 '..',
24 ], 24 ],
25 'defines': [ 25 'defines': [
26 'SYNC_IMPLEMENTATION', 26 'SYNC_IMPLEMENTATION',
27 ], 27 ],
28 'dependencies': [ 28 'dependencies': [
29 '../base/base.gyp:base', 29 '../base/base.gyp:base',
30 '../build/temp_gyp/googleurl.gyp:googleurl', 30 '../build/temp_gyp/googleurl.gyp:googleurl',
31 '../crypto/crypto.gyp:crypto', 31 '../crypto/crypto.gyp:crypto',
32 '../google_apis/google_apis.gyp:google_apis',
32 '../net/net.gyp:net', 33 '../net/net.gyp:net',
33 '../sql/sql.gyp:sql', 34 '../sql/sql.gyp:sql',
34 'protocol/sync_proto.gyp:sync_proto', 35 'protocol/sync_proto.gyp:sync_proto',
35 ], 36 ],
36 'export_dependent_settings': [ 37 'export_dependent_settings': [
37 # Propagate sync_proto since our headers include its generated 38 # Propagate sync_proto since our headers include its generated
38 # files. 39 # files.
39 'protocol/sync_proto.gyp:sync_proto', 40 'protocol/sync_proto.gyp:sync_proto',
40 ], 41 ],
41 'sources': [ 42 'sources': [
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 'variables': { 878 'variables': {
878 'test_suite_name': 'sync_unit_tests', 879 'test_suite_name': 'sync_unit_tests',
879 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 880 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
880 }, 881 },
881 'includes': [ '../build/apk_test.gypi' ], 882 'includes': [ '../build/apk_test.gypi' ],
882 }, 883 },
883 ], 884 ],
884 }], 885 }],
885 ], 886 ],
886 } 887 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698