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

Side by Side Diff: build/common.gypi

Issue 8678015: Touch constants and dead code removal. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Applied Sadrul's comments Created 9 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 | « no previous file | chrome/browser/automation/testing_automation_provider.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 1314 matching lines...) Expand 10 before | Expand all | Expand 10 after
1325 'sources/': [ ['exclude', '_aura\\.(h|cc)$'], 1325 'sources/': [ ['exclude', '_aura\\.(h|cc)$'],
1326 ['exclude', '(^|/)aura/'], 1326 ['exclude', '(^|/)aura/'],
1327 ] 1327 ]
1328 }], 1328 }],
1329 ['use_aura==0 or use_x11==0', { 1329 ['use_aura==0 or use_x11==0', {
1330 'sources/': [ ['exclude', '_aurax11\\.(h|cc)$'] ] 1330 'sources/': [ ['exclude', '_aurax11\\.(h|cc)$'] ]
1331 }], 1331 }],
1332 ['use_aura==0 or OS!="win"', { 1332 ['use_aura==0 or OS!="win"', {
1333 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ] 1333 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ]
1334 }], 1334 }],
1335 ['touchui!=1', {
1336 'sources/': [ ['exclude', '_touch\\.(h|cc)$'] ]
1337 }],
1338 ], 1335 ],
1339 }], 1336 }],
1340 ], # target_conditions for 'target_defaults' 1337 ], # target_conditions for 'target_defaults'
1341 'default_configuration': 'Debug', 1338 'default_configuration': 'Debug',
1342 'configurations': { 1339 'configurations': {
1343 # VCLinkerTool LinkIncremental values below: 1340 # VCLinkerTool LinkIncremental values below:
1344 # 0 == default 1341 # 0 == default
1345 # 1 == /INCREMENTAL:NO 1342 # 1 == /INCREMENTAL:NO
1346 # 2 == /INCREMENTAL 1343 # 2 == /INCREMENTAL
1347 # Debug links incremental, Release does not. 1344 # Debug links incremental, Release does not.
(...skipping 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after
2616 # settings in target dicts. SYMROOT is a special case, because many other 2613 # settings in target dicts. SYMROOT is a special case, because many other
2617 # Xcode variables depend on it, including variables such as 2614 # Xcode variables depend on it, including variables such as
2618 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 2615 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
2619 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 2616 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
2620 # files to appear (when present) in the UI as actual files and not red 2617 # files to appear (when present) in the UI as actual files and not red
2621 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 2618 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
2622 # and therefore SYMROOT, needs to be set at the project level. 2619 # and therefore SYMROOT, needs to be set at the project level.
2623 'SYMROOT': '<(DEPTH)/xcodebuild', 2620 'SYMROOT': '<(DEPTH)/xcodebuild',
2624 }, 2621 },
2625 } 2622 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/automation/testing_automation_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698