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

Side by Side Diff: google_apis/google_apis.gyp

Issue 387733004: Move sync/notifier to components/invalidation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add dep on dynamic_annotations (see crbug.com/392532) Created 6 years, 5 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, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
11 ], 11 ],
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'google_apis', 14 'target_name': 'google_apis',
15 'type': 'static_library', 15 'type': 'static_library',
16 'includes': [ 16 'includes': [
17 'determine_use_official_keys.gypi', 17 'determine_use_official_keys.gypi',
18 ], 18 ],
19 'dependencies': [ 19 'dependencies': [
20 '../base/base.gyp:base', 20 '../base/base.gyp:base',
21 '../crypto/crypto.gyp:crypto', 21 '../crypto/crypto.gyp:crypto',
22 '../net/net.gyp:net', 22 '../net/net.gyp:net',
23 '../third_party/libxml/libxml.gyp:libxml', 23 '../third_party/libxml/libxml.gyp:libxml',
24 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
maniscalco 2014/07/16 17:44:46 nit: sort order
24 ], 25 ],
25 'conditions': [ 26 'conditions': [
26 ['google_api_key!=""', { 27 ['google_api_key!=""', {
27 'defines': ['GOOGLE_API_KEY="<(google_api_key)"'], 28 'defines': ['GOOGLE_API_KEY="<(google_api_key)"'],
28 }], 29 }],
29 ['google_default_client_id!=""', { 30 ['google_default_client_id!=""', {
30 'defines': [ 31 'defines': [
31 'GOOGLE_DEFAULT_CLIENT_ID="<(google_default_client_id)"', 32 'GOOGLE_DEFAULT_CLIENT_ID="<(google_default_client_id)"',
32 ] 33 ]
33 }], 34 }],
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 'drive/dummy_auth_service.cc', 227 'drive/dummy_auth_service.cc',
227 'drive/dummy_auth_service.h', 228 'drive/dummy_auth_service.h',
228 'drive/test_util.cc', 229 'drive/test_util.cc',
229 'drive/test_util.h', 230 'drive/test_util.h',
230 ], 231 ],
231 }], 232 }],
232 ], 233 ],
233 }, 234 },
234 ], 235 ],
235 } 236 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698