NaCl: Update revision in DEPS, r14065 -> r14087
[chromium-blink-merge.git] / google_apis / BUILD.gn
blobce4df0bd84bc281dc1c261e09306de6e66e5934e
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 import("//build/config/features.gni")
7 declare_args() {
8   # You can set the variable 'use_official_google_api_keys' to true
9   # to use the Google-internal file containing official API keys
10   # for Google Chrome even in a developer build.  Setting this
11   # variable explicitly to true will cause your build to fail if the
12   # internal file is missing.
13   #
14   # The variable is documented here, but not handled in this file;
15   # see //google_apis/determine_use_official_keys.gypi for the
16   # implementation.
17   #
18   # Set the variable to false to not use the internal file, even when
19   # it exists in your checkout.
20   #
21   # Leave it unset or set to "" to have the variable
22   # implicitly set to true if you have
23   # src/google_apis/internal/google_chrome_api_keys.h in your
24   # checkout, and implicitly set to false if not.
25   #
26   # Note that official builds always behave as if the variable
27   # was explicitly set to true, i.e. they always use official keys,
28   # and will fail to build if the internal file is missing.
29   use_official_google_api_keys = ""
31   # Set these to bake the specified API keys and OAuth client
32   # IDs/secrets into your build.
33   #
34   # If you create a build without values baked in, you can instead
35   # set environment variables to provide the keys at runtime (see
36   # src/google_apis/google_api_keys.h for details).  Features that
37   # require server-side APIs may fail to work if no keys are
38   # provided.
39   #
40   # Note that if you are building an official build or if
41   # use_official_google_api_keys has been set to trie (explicitly or
42   # implicitly), these values will be ignored and the official
43   # keys will be used instead.
44   google_api_key = ""
46   # See google_api_key.
47   google_default_client_id = ""
49   # See google_api_key.
50   google_default_client_secret = ""
53 if (use_official_google_api_keys == "") {
54   # Default behavior, check if the key file exists.
55   check_internal_result = exec_script(
56     "build/check_internal.py",
57     [ rebase_path("internal/google_chrome_api_keys.h", root_build_dir) ],
58     "value")
59   use_official_google_api_keys = (check_internal_result == 1)
62 config("key_defines") {
63   defines = []
64   if (use_official_google_api_keys) {
65     defines += [ "USE_OFFICIAL_GOOGLE_API_KEYS=1" ]
66   }
67   if (google_api_key != "") {
68     defines += [ "GOOGLE_API_KEY=$google_api_key" ]
69   }
70   if (google_default_client_id != "") {
71     defines += [ "GOOGLE_DEFAULT_CLIENT_ID=$google_default_client_id" ]
72   }
73   if (google_default_client_secret != "") {
74     defines += [ "GOOGLE_DEFAULT_CLIENT_SECRET=$google_default_client_secret" ]
75   }
78 source_set("google_apis") {
79   sources = [
80     "gaia/account_tracker.cc",
81     "gaia/account_tracker.h",
82     "gaia/gaia_auth_consumer.cc",
83     "gaia/gaia_auth_consumer.h",
84     "gaia/gaia_auth_fetcher.cc",
85     "gaia/gaia_auth_fetcher.h",
86     "gaia/gaia_auth_util.cc",
87     "gaia/gaia_auth_util.h",
88     "gaia/gaia_constants.cc",
89     "gaia/gaia_constants.h",
90     "gaia/gaia_oauth_client.cc",
91     "gaia/gaia_oauth_client.h",
92     "gaia/gaia_switches.cc",
93     "gaia/gaia_switches.h",
94     "gaia/gaia_urls.cc",
95     "gaia/gaia_urls.h",
96     "gaia/google_service_auth_error.cc",
97     "gaia/google_service_auth_error.h",
98     "gaia/identity_provider.cc",
99     "gaia/identity_provider.h",
100     "gaia/merge_session_helper.cc",
101     "gaia/merge_session_helper.h",
102     "gaia/oauth_request_signer.cc",
103     "gaia/oauth_request_signer.h",
104     "gaia/oauth2_access_token_consumer.h",
105     "gaia/oauth2_access_token_fetcher.cc",
106     "gaia/oauth2_access_token_fetcher.h",
107     "gaia/oauth2_access_token_fetcher_impl.cc",
108     "gaia/oauth2_access_token_fetcher_impl.h",
109     "gaia/oauth2_api_call_flow.cc",
110     "gaia/oauth2_api_call_flow.h",
111     "gaia/oauth2_mint_token_flow.cc",
112     "gaia/oauth2_mint_token_flow.h",
113     "gaia/oauth2_token_service.cc",
114     "gaia/oauth2_token_service.h",
115     "gaia/oauth2_token_service_request.cc",
116     "gaia/oauth2_token_service_request.h",
117     "gaia/ubertoken_fetcher.cc",
118     "gaia/ubertoken_fetcher.h",
119     "google_api_keys.cc",
120     "google_api_keys.h",
121   ]
123   if (is_win) {
124     cflags = [ "/wd4267" ]  # size_t -> int
125   }
127   configs += [ ":key_defines" ]
129   deps = [
130     "//base",
131     "//base/third_party/dynamic_annotations",
132     "//crypto",
133     "//net",
134     "//third_party/libxml",
135   ]
137   if (enable_extensions) {
138     sources += [
139       "drive/auth_service.cc",
140       "drive/auth_service.h",
141       "drive/auth_service_interface.h",
142       "drive/auth_service_observer.h",
143       "drive/base_requests.cc",
144       "drive/base_requests.h",
145       "drive/drive_api_parser.cc",
146       "drive/drive_api_parser.h",
147       "drive/drive_api_requests.cc",
148       "drive/drive_api_requests.h",
149       "drive/drive_api_url_generator.cc",
150       "drive/drive_api_url_generator.h",
151       "drive/drive_common_callbacks.h",
152       "drive/gdata_errorcode.cc",
153       "drive/gdata_errorcode.h",
154       "drive/gdata_wapi_requests.cc",
155       "drive/gdata_wapi_requests.h",
156       "drive/gdata_wapi_parser.cc",
157       "drive/gdata_wapi_parser.h",
158       "drive/gdata_wapi_url_generator.cc",
159       "drive/gdata_wapi_url_generator.h",
160       "drive/request_sender.cc",
161       "drive/request_sender.h",
162       "drive/request_util.cc",
163       "drive/request_util.h",
164       "drive/task_util.cc",
165       "drive/task_util.h",
166       "drive/time_util.cc",
167       "drive/time_util.h",
168     ]
169   }
172 source_set("test_support") {
173   testonly = true
174   sources = [
175     "gaia/fake_gaia.cc",
176     "gaia/fake_gaia.h",
177     "gaia/fake_identity_provider.cc",
178     "gaia/fake_identity_provider.h",
179     "gaia/fake_oauth2_token_service.cc",
180     "gaia/fake_oauth2_token_service.h",
181     "gaia/mock_url_fetcher_factory.h",
182     "gaia/oauth2_token_service_test_util.cc",
183     "gaia/oauth2_token_service_test_util.h",
184   ]
186   public_deps = [
187     "//base",
188     "//base/test:test_support",
189     "//net",
190     "//net:test_support",
191   ]
193   if (enable_extensions) {
194     sources += [
195       "drive/dummy_auth_service.cc",
196       "drive/dummy_auth_service.h",
197       "drive/test_util.cc",
198       "drive/test_util.h",
199     ]
200   }
203 test("google_apis_unittest") {
204   sources = [
205     "google_api_keys_unittest.cc",
206     "gaia/gaia_auth_fetcher_unittest.cc",
207     "gaia/gaia_auth_util_unittest.cc",
208     "gaia/gaia_oauth_client_unittest.cc",
209     "gaia/google_service_auth_error_unittest.cc",
210     "gaia/merge_session_helper_unittest.cc",
211     "gaia/oauth_request_signer_unittest.cc",
212     "gaia/oauth2_access_token_fetcher_impl_unittest.cc",
213     "gaia/oauth2_api_call_flow_unittest.cc",
214     "gaia/oauth2_mint_token_flow_unittest.cc",
215     "gaia/oauth2_token_service_unittest.cc",
216     "gaia/ubertoken_fetcher_unittest.cc",
217   ]
219   configs += [ ":key_defines" ]
221   deps = [
222     ":google_apis",
223     ":test_support",
224     "//base",
225     "//base/test:run_all_unittests",
226     "//testing/gmock",
227     "//testing/gtest",
228   ]
230   if (enable_extensions) {
231     sources += [
232       "drive/base_requests_server_unittest.cc",
233       "drive/base_requests_unittest.cc",
234       "drive/drive_api_parser_unittest.cc",
235       "drive/drive_api_requests_unittest.cc",
236       "drive/drive_api_url_generator_unittest.cc",
237       "drive/gdata_wapi_parser_unittest.cc",
238       "drive/gdata_wapi_requests_unittest.cc",
239       "drive/gdata_wapi_url_generator_unittest.cc",
240       "drive/request_sender_unittest.cc",
241       "drive/request_util_unittest.cc",
242       "drive/time_util_unittest.cc",
243     ]
244   }