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

Side by Side Diff: google_apis/google_apis.gyp

Issue 96413002: Move c/b/google_apis to google_apis/drive. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years 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
« no previous file with comments | « google_apis/drive/time_util_unittest.cc ('k') | 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 (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 ], 24 ],
24 'conditions': [ 25 'conditions': [
25 ['google_api_key!=""', { 26 ['google_api_key!=""', {
26 'defines': ['GOOGLE_API_KEY="<(google_api_key)"'], 27 'defines': ['GOOGLE_API_KEY="<(google_api_key)"'],
27 }], 28 }],
28 ['google_default_client_id!=""', { 29 ['google_default_client_id!=""', {
29 'defines': [ 30 'defines': [
30 'GOOGLE_DEFAULT_CLIENT_ID="<(google_default_client_id)"', 31 'GOOGLE_DEFAULT_CLIENT_ID="<(google_default_client_id)"',
31 ] 32 ]
32 }], 33 }],
(...skipping 18 matching lines...) Expand all
51 'sources!': [ 52 'sources!': [
52 'cup/client_update_protocol_openssl.cc', 53 'cup/client_update_protocol_openssl.cc',
53 ], 54 ],
54 },], 55 },],
55 ], 56 ],
56 'sources': [ 57 'sources': [
57 'cup/client_update_protocol.cc', 58 'cup/client_update_protocol.cc',
58 'cup/client_update_protocol.h', 59 'cup/client_update_protocol.h',
59 'cup/client_update_protocol_nss.cc', 60 'cup/client_update_protocol_nss.cc',
60 'cup/client_update_protocol_openssl.cc', 61 'cup/client_update_protocol_openssl.cc',
62 'drive/auth_service.cc',
63 'drive/auth_service.h',
64 'drive/auth_service_interface.h',
65 'drive/auth_service_observer.h',
66 'drive/base_requests.cc',
67 'drive/base_requests.h',
68 'drive/drive_api_parser.cc',
69 'drive/drive_api_parser.h',
70 'drive/drive_api_requests.cc',
71 'drive/drive_api_requests.h',
72 'drive/drive_api_url_generator.cc',
73 'drive/drive_api_url_generator.h',
74 'drive/drive_common_callbacks.h',
75 'drive/drive_entry_kinds.h',
76 'drive/gdata_contacts_requests.cc',
77 'drive/gdata_contacts_requests.h',
78 'drive/gdata_errorcode.cc',
79 'drive/gdata_errorcode.h',
80 'drive/gdata_wapi_requests.cc',
81 'drive/gdata_wapi_requests.h',
82 'drive/gdata_wapi_parser.cc',
83 'drive/gdata_wapi_parser.h',
84 'drive/gdata_wapi_url_generator.cc',
85 'drive/gdata_wapi_url_generator.h',
86 'drive/request_sender.cc',
87 'drive/request_sender.h',
88 'drive/request_util.cc',
89 'drive/request_util.h',
90 'drive/task_util.cc',
91 'drive/task_util.h',
92 'drive/time_util.cc',
93 'drive/time_util.h',
61 'gaia/gaia_auth_consumer.cc', 94 'gaia/gaia_auth_consumer.cc',
62 'gaia/gaia_auth_consumer.h', 95 'gaia/gaia_auth_consumer.h',
63 'gaia/gaia_auth_fetcher.cc', 96 'gaia/gaia_auth_fetcher.cc',
64 'gaia/gaia_auth_fetcher.h', 97 'gaia/gaia_auth_fetcher.h',
65 'gaia/gaia_auth_util.cc', 98 'gaia/gaia_auth_util.cc',
66 'gaia/gaia_auth_util.h', 99 'gaia/gaia_auth_util.h',
67 'gaia/gaia_constants.cc', 100 'gaia/gaia_constants.cc',
68 'gaia/gaia_constants.h', 101 'gaia/gaia_constants.h',
69 'gaia/gaia_oauth_client.cc', 102 'gaia/gaia_oauth_client.cc',
70 'gaia/gaia_oauth_client.h', 103 'gaia/gaia_oauth_client.h',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 '../net/net.gyp:net', 154 '../net/net.gyp:net',
122 '../net/net.gyp:net_test_support', 155 '../net/net.gyp:net_test_support',
123 ], 156 ],
124 'sources': [ 157 'sources': [
125 'gaia/fake_gaia.cc', 158 'gaia/fake_gaia.cc',
126 'gaia/fake_gaia.h', 159 'gaia/fake_gaia.h',
127 ], 160 ],
128 }, 161 },
129 ], 162 ],
130 } 163 }
OLDNEW
« no previous file with comments | « google_apis/drive/time_util_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698