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

Side by Side Diff: google_apis/determine_use_official_keys.gypi

Issue 12330155: Isolate check_internal.py to the .gypi files that need it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | google_apis/google_apis.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2013 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.
4
5 # Include this .gypi in your target to dynamically set the
6 # use_official_google_api_keys variable (unless it is already
7 # explicitly set) and the associated preprocessor define.
8
9 {
10 'variables': {
11 'variables': {
12 'conditions': [
13 # If use_official_google_api_keys is already set (to 0 or 1), we
14 # do none of the implicit checking. If it is set to 1 and the
15 # internal keys file is missing, the build will fail at compile
16 # time. If it is set to 0 and keys are not provided by other
17 # means, a warning will be printed at compile time.
18 ['use_official_google_api_keys==2', {
19 'use_official_google_api_keys%':
20 '<!(python <(DEPTH)/google_apis/build/check_internal.py <(DEPTH)/g oogle_apis/internal/google_chrome_api_keys.h)',
21 }],
22 ]
23 },
24 'use_official_google_api_keys%': 'use_official_google_api_keys',
25 },
26 'conditions': [
27 ['use_official_google_api_keys==1', {
28 'defines': ['USE_OFFICIAL_GOOGLE_API_KEYS=1'],
M-A Ruel 2013/05/08 18:11:23 align -2 :)
29 }],
30 ],
31 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | google_apis/google_apis.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698