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

Side by Side Diff: chrome/chrome.gyp

Issue 147154: Use C99 standard format macros for 64-bit values. (Closed)
Patch Set: ... Created 11 years, 6 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
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'chromium_code': 1, 7 'chromium_code': 1,
8 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
(...skipping 22 matching lines...) Expand all
33 'browser/renderer_host/web_cache_manager_browser_test.cc', 33 'browser/renderer_host/web_cache_manager_browser_test.cc',
34 # TODO(jcampan): once the task manager works on Mac, move this test to the 34 # TODO(jcampan): once the task manager works on Mac, move this test to the
35 # non win specific section. 35 # non win specific section.
36 'browser/task_manager_browsertest.cc', 36 'browser/task_manager_browsertest.cc',
37 ], 37 ],
38 }, 38 },
39 'includes': [ 39 'includes': [
40 '../build/common.gypi', 40 '../build/common.gypi',
41 ], 41 ],
42 'target_defaults': { 42 'target_defaults': {
43 'defines': [
44 '__STDC_FORMAT_MACROS',
Evan Martin 2009/06/25 17:46:35 comment on this? (just a reference to the new hea
Mark Mentovai 2009/06/25 18:02:18 Evan Martin wrote:
45 ],
43 'sources/': [ 46 'sources/': [
44 ['exclude', '/(cocoa|gtk|win)/'], 47 ['exclude', '/(cocoa|gtk|win)/'],
45 ['exclude', '_(cocoa|gtk|linux|mac|posix|skia|win|views|x)(_unittest)?\\.( cc|mm?)$'], 48 ['exclude', '_(cocoa|gtk|linux|mac|posix|skia|win|views|x)(_unittest)?\\.( cc|mm?)$'],
46 ['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'], 49 ['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'],
47 ], 50 ],
48 'conditions': [ 51 'conditions': [
49 ['OS=="linux"', {'sources/': [ 52 ['OS=="linux"', {'sources/': [
50 ['include', '/gtk/'], 53 ['include', '/gtk/'],
51 ['include', '_(gtk|linux|posix|skia|x)(_unittest)?\\.cc$'], 54 ['include', '_(gtk|linux|posix|skia|x)(_unittest)?\\.cc$'],
52 ['include', '/(gtk|x11)_[^/]*\\.cc$'], 55 ['include', '/(gtk|x11)_[^/]*\\.cc$'],
(...skipping 4752 matching lines...) Expand 10 before | Expand all | Expand 10 after
4805 # Use outputs of this action as inputs for the main target build. 4808 # Use outputs of this action as inputs for the main target build.
4806 # Seems as a misnomer but makes this happy on Linux (scons). 4809 # Seems as a misnomer but makes this happy on Linux (scons).
4807 'process_outputs_as_sources': 1, 4810 'process_outputs_as_sources': 1,
4808 }, 4811 },
4809 ], # 'actions' 4812 ], # 'actions'
4810 }, 4813 },
4811 ] 4814 ]
4812 }], 4815 }],
4813 ], # 'conditions' 4816 ], # 'conditions'
4814 } 4817 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698