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

Side by Side Diff: build/common.gypi

Issue 6368055: Commit my clang plugin and fix up documentation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add makefile for thakis Created 9 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 | « no previous file | tools/clang/plugins/ChromeClassTester.h » ('j') | tools/clang/plugins/Makefile » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 # Set this to true when building with Clang. 271 # Set this to true when building with Clang.
272 # See http://code.google.com/p/chromium/wiki/Clang for details. 272 # See http://code.google.com/p/chromium/wiki/Clang for details.
273 # TODO: eventually clang should behave identically to gcc, and this 273 # TODO: eventually clang should behave identically to gcc, and this
274 # won't be necessary. 274 # won't be necessary.
275 'clang%': 0, 275 'clang%': 0,
276 276
277 # These two variables can be set in GYP_DEFINES while running 277 # These two variables can be set in GYP_DEFINES while running
278 # |gclient runhooks| to let clang run a plugin in every compilation. 278 # |gclient runhooks| to let clang run a plugin in every compilation.
279 # Only has an effect if 'clang=1' is in GYP_DEFINES as well. 279 # Only has an effect if 'clang=1' is in GYP_DEFINES as well.
280 # Example: 280 # Example:
281 # GYP_DEFINES='clang=1 clang_load=/abs/path/to/libPrintFunctionNames.dyl ib clang_plugin=print-fns' gclient runhooks 281 # GYP_DEFINES='clang=1 clang_load=/abs/path/to/libPrintFunctionNames.dyl ib clang_add_plugin=print-fns' gclient runhooks
282 282
283 'clang_load%': '', 283 'clang_load%': '',
284 'clang_add_plugin%': '', 284 'clang_add_plugin%': '',
285 285
286 # Enable sampling based profiler. 286 # Enable sampling based profiler.
287 # See http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html 287 # See http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html
288 'profiling%': '0', 288 'profiling%': '0',
289 289
290 # Override whether we should use Breakpad on Linux. I.e. for Chrome bot. 290 # Override whether we should use Breakpad on Linux. I.e. for Chrome bot.
291 'linux_breakpad%': 0, 291 'linux_breakpad%': 0,
(...skipping 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after
1562 # and therefore SYMROOT, needs to be set at the project level. 1562 # and therefore SYMROOT, needs to be set at the project level.
1563 'SYMROOT': '<(DEPTH)/xcodebuild', 1563 'SYMROOT': '<(DEPTH)/xcodebuild',
1564 }, 1564 },
1565 } 1565 }
1566 1566
1567 # Local Variables: 1567 # Local Variables:
1568 # tab-width:2 1568 # tab-width:2
1569 # indent-tabs-mode:nil 1569 # indent-tabs-mode:nil
1570 # End: 1570 # End:
1571 # vim: set expandtab tabstop=2 shiftwidth=2: 1571 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | tools/clang/plugins/ChromeClassTester.h » ('j') | tools/clang/plugins/Makefile » ('J')

Powered by Google App Engine
This is Rietveld 408576698