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

Side by Side Diff: components/precache/precache_defines.gypi

Issue 393193002: Add search_engines and precache components to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 # These values are duplicated in the GM build in:
viettrungluu 2014/07/16 02:53:36 s/GM/GN/
8 # //components/precache/core:precache_config
7 'precache_config_settings_url%': 'http://www.gstatic.com/chrome/wifiprefetch /precache_config', 9 'precache_config_settings_url%': 'http://www.gstatic.com/chrome/wifiprefetch /precache_config',
8 'precache_manifest_url_prefix%': 'http://www.gstatic.com/chrome/wifiprefetch /precache_manifest_', 10 'precache_manifest_url_prefix%': 'http://www.gstatic.com/chrome/wifiprefetch /precache_manifest_',
9 }, 11 },
10 'conditions': [ 12 'conditions': [
11 ['precache_config_settings_url != ""', { 13 ['precache_config_settings_url != ""', {
12 'defines': [ 14 'defines': [
13 'PRECACHE_CONFIG_SETTINGS_URL="<(precache_config_settings_url)"', 15 'PRECACHE_CONFIG_SETTINGS_URL="<(precache_config_settings_url)"',
14 ], 16 ],
15 }], 17 }],
16 ['precache_manifest_url_prefix != ""', { 18 ['precache_manifest_url_prefix != ""', {
17 'defines': [ 19 'defines': [
18 'PRECACHE_MANIFEST_URL_PREFIX="<(precache_manifest_url_prefix)"', 20 'PRECACHE_MANIFEST_URL_PREFIX="<(precache_manifest_url_prefix)"',
19 ], 21 ],
20 }], 22 }],
21 ], 23 ],
22 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698