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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 10916284: Disable type_profiler in pyautolib. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed Created 8 years, 2 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 | no next file » | 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 'variables' : { 5 'variables' : {
6 'pyautolib_sources': [ 6 'pyautolib_sources': [
7 'app/chrome_command_ids.h', 7 'app/chrome_command_ids.h',
8 'app/chrome_dll_resource.h', 8 'app/chrome_dll_resource.h',
9 'common/automation_constants.h', 9 'common/automation_constants.h',
10 'common/pref_names.cc', 10 'common/pref_names.cc',
(...skipping 4435 matching lines...) Expand 10 before | Expand all | Expand 10 after
4446 'xcode_settings': { 4446 'xcode_settings': {
4447 # Link with python2.6. Using -L/usr/lib and -lpython2.6 does not 4447 # Link with python2.6. Using -L/usr/lib and -lpython2.6 does not
4448 # work with the -isysroot argument passed in. Even if it did, 4448 # work with the -isysroot argument passed in. Even if it did,
4449 # the linker shouldn't use any other lib not in the 10.5 sdk. 4449 # the linker shouldn't use any other lib not in the 10.5 sdk.
4450 'OTHER_LDFLAGS': [ 4450 'OTHER_LDFLAGS': [
4451 '/usr/lib/libpython2.6.dylib' 4451 '/usr/lib/libpython2.6.dylib'
4452 ], 4452 ],
4453 }, 4453 },
4454 'msvs_disabled_warnings': [4211], 4454 'msvs_disabled_warnings': [4211],
4455 'conditions': [ 4455 'conditions': [
4456 # Disable the type profiler. _POSIX_C_SOURCE and _XOPEN_SOURCE
4457 # conflict between <Python.h> and <typeinfo>.
4458 ['OS=="linux" and clang_type_profiler==1', {
4459 'cflags_cc!': [
4460 '-fintercept-allocation-functions',
4461 ],
4462 }],
4456 ['os_posix == 1 and OS!="mac"', { 4463 ['os_posix == 1 and OS!="mac"', {
4457 'include_dirs': [ 4464 'include_dirs': [
4458 '..', 4465 '..',
4459 '<(sysroot)/usr/include/python<(python_ver)', 4466 '<(sysroot)/usr/include/python<(python_ver)',
4460 ], 4467 ],
4461 'link_settings': { 4468 'link_settings': {
4462 'libraries': [ 4469 'libraries': [
4463 '-lpython<(python_ver)', 4470 '-lpython<(python_ver)',
4464 ], 4471 ],
4465 }, 4472 },
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
4852 '--result', '<@(_outputs)', 4859 '--result', '<@(_outputs)',
4853 '--isolate', 'browser_tests.isolate', 4860 '--isolate', 'browser_tests.isolate',
4854 ], 4861 ],
4855 }, 4862 },
4856 ], 4863 ],
4857 }, 4864 },
4858 ], 4865 ],
4859 }], 4866 }],
4860 ], # 'conditions' 4867 ], # 'conditions'
4861 } 4868 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698