OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |