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

Side by Side Diff: build/common.gypi

Issue 10262012: Fix mini_installer for Metro resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Leave enable_metro off by default. Created 8 years, 7 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 | « no previous file | chrome/installer/mini_installer.gyp » ('j') | 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 26 matching lines...) Expand all
37 37
38 # Disable Virtual keyboard support by default. 38 # Disable Virtual keyboard support by default.
39 'use_virtual_keyboard%': 0, 39 'use_virtual_keyboard%': 0,
40 40
41 # Disable viewport meta tag by default. 41 # Disable viewport meta tag by default.
42 'enable_viewport%': 0, 42 'enable_viewport%': 0,
43 43
44 # Enable HiDPI support. 44 # Enable HiDPI support.
45 'enable_hidpi%': 0, 45 'enable_hidpi%': 0,
46 46
47 # Enable Metro support. 47 # Enable inclusion of touch-optimized resources.
48 # TODO(joi): Rename to enable_touch_assets.
48 'enable_metro%': 0, 49 'enable_metro%': 0,
49 }, 50 },
50 # Copy conditionally-set variables out one scope. 51 # Copy conditionally-set variables out one scope.
51 'chromeos%': '<(chromeos)', 52 'chromeos%': '<(chromeos)',
52 'use_aura%': '<(use_aura)', 53 'use_aura%': '<(use_aura)',
53 'use_ash%': '<(use_ash)', 54 'use_ash%': '<(use_ash)',
54 'enable_dip%': '<(enable_dip)', 55 'enable_dip%': '<(enable_dip)',
55 'use_openssl%': '<(use_openssl)', 56 'use_openssl%': '<(use_openssl)',
56 'use_virtual_keyboard%': '<(use_virtual_keyboard)', 57 'use_virtual_keyboard%': '<(use_virtual_keyboard)',
57 'enable_viewport%': '<(enable_viewport)', 58 'enable_viewport%': '<(enable_viewport)',
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 260
260 # Enables theme support, which is enabled by default. Support for 261 # Enables theme support, which is enabled by default. Support for
261 # disabling depends on the platform. 262 # disabling depends on the platform.
262 'enable_themes%': 1, 263 'enable_themes%': 1,
263 264
264 # Enables support for background apps. 265 # Enables support for background apps.
265 'enable_background%': 1, 266 'enable_background%': 1,
266 267
267 # Enable the task manager by default. 268 # Enable the task manager by default.
268 'enable_task_manager%': 1, 269 'enable_task_manager%': 1,
269 270
270 # Enables support for promo resource service. 271 # Enables support for promo resource service.
271 'enable_promo_resource_service%': 1, 272 'enable_promo_resource_service%': 1,
272 273
273 # XInput2 multitouch support is disabled by default (use_xi2_mt=0). 274 # XInput2 multitouch support is disabled by default (use_xi2_mt=0).
274 # Setting to non-zero value enables XI2 MT. When XI2 MT is enabled, 275 # Setting to non-zero value enables XI2 MT. When XI2 MT is enabled,
275 # the input value also defines the required XI2 minor minimum version. 276 # the input value also defines the required XI2 minor minimum version.
276 # For example, use_xi2_mt=2 means XI2.2 or above version is required. 277 # For example, use_xi2_mt=2 means XI2.2 or above version is required.
277 'use_xi2_mt%': 0, 278 'use_xi2_mt%': 0,
278 279
279 # Use of precompiled headers on Windows. 280 # Use of precompiled headers on Windows.
(...skipping 2756 matching lines...) Expand 10 before | Expand all | Expand 10 after
3036 # settings in target dicts. SYMROOT is a special case, because many other 3037 # settings in target dicts. SYMROOT is a special case, because many other
3037 # Xcode variables depend on it, including variables such as 3038 # Xcode variables depend on it, including variables such as
3038 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3039 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3039 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3040 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3040 # files to appear (when present) in the UI as actual files and not red 3041 # files to appear (when present) in the UI as actual files and not red
3041 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3042 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3042 # and therefore SYMROOT, needs to be set at the project level. 3043 # and therefore SYMROOT, needs to be set at the project level.
3043 'SYMROOT': '<(DEPTH)/xcodebuild', 3044 'SYMROOT': '<(DEPTH)/xcodebuild',
3044 }, 3045 },
3045 } 3046 }
OLDNEW
« no previous file with comments | « no previous file | chrome/installer/mini_installer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698