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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 10824100: Fix LINK(DLL) _pyautolib.pyd (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use <(DEPTH) instead of .. Created 8 years, 4 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 4296 matching lines...) Expand 10 before | Expand all | Expand 10 after
4307 '..', 4307 '..',
4308 '/usr/include/python2.6', 4308 '/usr/include/python2.6',
4309 ], 4309 ],
4310 }], 4310 }],
4311 ['OS=="win"', { 4311 ['OS=="win"', {
4312 'product_extension': 'pyd', 4312 'product_extension': 'pyd',
4313 'include_dirs': [ 4313 'include_dirs': [
4314 '..', 4314 '..',
4315 '../third_party/python_26/include', 4315 '../third_party/python_26/include',
4316 ], 4316 ],
4317 'link_settings': { 4317 'msvs_settings': {
4318 'libraries': [ 4318 'VCLinkerTool': {
4319 '../third_party/python_26/libs/python26.lib', 4319 'AdditionalLibraryDirectories': [
4320 ], 4320 '<(DEPTH)/third_party/python_26/libs',
4321 ],
4322 'AdditionalDependencies': [
4323 'python26.lib',
4324 ],
4325 },
4321 } 4326 }
4322 }], 4327 }],
4323 ['clang == 1', { 4328 ['clang == 1', {
4324 'xcode_settings': { 4329 'xcode_settings': {
4325 'WARNING_CFLAGS': [ 4330 'WARNING_CFLAGS': [
4326 # swig creates code with self assignments. 4331 # swig creates code with self assignments.
4327 '-Wno-self-assign', 4332 '-Wno-self-assign',
4328 ], 4333 ],
4329 }, 4334 },
4330 'cflags': [ 4335 'cflags': [
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
4638 '--result', '<@(_outputs)', 4643 '--result', '<@(_outputs)',
4639 '--isolate', 'browser_tests.isolate', 4644 '--isolate', 'browser_tests.isolate',
4640 ], 4645 ],
4641 }, 4646 },
4642 ], 4647 ],
4643 }, 4648 },
4644 ], 4649 ],
4645 }], 4650 }],
4646 ], # 'conditions' 4651 ], # 'conditions'
4647 } 4652 }
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