OLD | NEW |
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 2479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2490 'WARNING_CFLAGS': [ | 2490 'WARNING_CFLAGS': [ |
2491 # swig creates code with self assignments. | 2491 # swig creates code with self assignments. |
2492 '-Wno-self-assign', | 2492 '-Wno-self-assign', |
2493 ], | 2493 ], |
2494 }, | 2494 }, |
2495 'cflags': [ | 2495 'cflags': [ |
2496 '-Wno-self-assign', | 2496 '-Wno-self-assign', |
2497 ], | 2497 ], |
2498 }], | 2498 }], |
2499 ['asan==1', { | 2499 ['asan==1', { |
2500 'cflags!': [ '-faddress-sanitizer' ], | 2500 'cflags!': [ '-faddress-sanitizer', '-fsanitize=address', ], |
2501 'xcode_settings': { | 2501 'xcode_settings': { |
2502 'OTHER_CFLAGS!': [ | 2502 'OTHER_CFLAGS!': [ |
2503 '-faddress-sanitizer', | 2503 '-faddress-sanitizer', '-fsanitize=address', |
2504 ], | 2504 ], |
2505 }, | 2505 }, |
2506 }], | 2506 }], |
2507 ], | 2507 ], |
2508 'actions': [ | 2508 'actions': [ |
2509 { | 2509 { |
2510 'variables' : { | 2510 'variables' : { |
2511 'swig_args': [ '-I..', | 2511 'swig_args': [ '-I..', |
2512 '-python', | 2512 '-python', |
2513 '-c++', | 2513 '-c++', |
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2802 'sync_integration_tests.isolate', | 2802 'sync_integration_tests.isolate', |
2803 ], | 2803 ], |
2804 'sources': [ | 2804 'sources': [ |
2805 'sync_integration_tests.isolate', | 2805 'sync_integration_tests.isolate', |
2806 ], | 2806 ], |
2807 }, | 2807 }, |
2808 ], | 2808 ], |
2809 }], | 2809 }], |
2810 ], # 'conditions' | 2810 ], # 'conditions' |
2811 } | 2811 } |
OLD | NEW |