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: net/net.gyp

Issue 27362: Fixes to gyp files to get test_shell building on windows from a gyp project (... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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
« no previous file with comments | « build/temp_gyp/v8.gyp ('k') | webkit/activex_shim/activex_shim.gyp » ('j') | 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) 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 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/common.gypi', 10 '../build/common.gypi',
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 [ 'OS == "mac"', { 346 [ 'OS == "mac"', {
347 'sources/': [ ['exclude', '_(linux|win)\\.cc$'] ], 347 'sources/': [ ['exclude', '_(linux|win)\\.cc$'] ],
348 'link_settings': { 348 'link_settings': {
349 'libraries': [ 349 'libraries': [
350 '$(SDKROOT)/System/Library/Frameworks/Security.framework', 350 '$(SDKROOT)/System/Library/Frameworks/Security.framework',
351 '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framew ork', 351 '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framew ork',
352 ] 352 ]
353 }, 353 },
354 }, 354 },
355 ], 355 ],
356 [ 'OS == "win"', {
357 # This used to live in build_convert_tld_data.rules
358 #'msvs_tool_files': ['build/convert_tld_data.rules'],
359 'rules': [
360 {
361 'rule_name': 'tld_convert',
362 'extension': 'dat',
363 'inputs': [ '<(RULE_INPUT_PATH)' ],
364 'outputs':
365 ['<(INTERMEDIATE_DIR)/../<(RULE_INPUT_ROOT)_clean.dat'],
366 'action':
367 ['<(PRODUCT_DIR)/tld_cleanup', '<@(_inputs)', '<@(_outputs)'],
368 },
369 ],
370 },],
371 ], 356 ],
372 }, 357 },
373 { 358 {
374 'target_name': 'net_unittests', 359 'target_name': 'net_unittests',
375 'type': 'executable', 360 'type': 'executable',
376 'dependencies': [ 361 'dependencies': [
377 'net', 362 'net',
378 '../base/base.gyp:base', 363 '../base/base.gyp:base',
379 '../testing/gtest.gyp:gtest', 364 '../testing/gtest.gyp:gtest',
380 ], 365 ],
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 # stuff that builds everything underneath Hammer. Just 597 # stuff that builds everything underneath Hammer. Just
613 # put a SCons string in the action, at least for now. 598 # put a SCons string in the action, at least for now.
614 'action': ['${SOURCES[0]}', '${SOURCES[1]}', '$TARGET'], 599 'action': ['${SOURCES[0]}', '${SOURCES[1]}', '$TARGET'],
615 } 600 }
616 ], 601 ],
617 }, 602 },
618 ], 603 ],
619 }], 604 }],
620 ], 605 ],
621 } 606 }
OLDNEW
« no previous file with comments | « build/temp_gyp/v8.gyp ('k') | webkit/activex_shim/activex_shim.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698