| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright (C) 2011 Google Inc. All rights reserved. | 2 # Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 'sources': [ | 646 'sources': [ |
| 647 '<@(webkit_unittest_files)', | 647 '<@(webkit_unittest_files)', |
| 648 'src/WebTestingSupport.cpp', | 648 'src/WebTestingSupport.cpp', |
| 649 'public/WebTestingSupport.h', | 649 'public/WebTestingSupport.h', |
| 650 'tests/WebUnitTests.cpp', # Components test ru
nner support. | 650 'tests/WebUnitTests.cpp', # Components test ru
nner support. |
| 651 ], | 651 ], |
| 652 'sources!': [ | 652 'sources!': [ |
| 653 # We should not include files depending on webki
t_support. | 653 # We should not include files depending on webki
t_support. |
| 654 # These tests depend on webkit_support and | 654 # These tests depend on webkit_support and |
| 655 # functions defined only in !WEBKIT_IMPLEMENTATI
ON. | 655 # functions defined only in !WEBKIT_IMPLEMENTATI
ON. |
| 656 'tests/IDBCleanupOnIOErrorTest.cpp', |
| 656 'tests/LevelDBTest.cpp', | 657 'tests/LevelDBTest.cpp', |
| 657 ], | 658 ], |
| 658 'conditions': [ | 659 'conditions': [ |
| 659 ['OS=="win" or OS=="mac"', { | 660 ['OS=="win" or OS=="mac"', { |
| 660 'dependencies': [ | 661 'dependencies': [ |
| 661 '<(chromium_src_dir)/third_party/nss/nss
.gyp:*', | 662 '<(chromium_src_dir)/third_party/nss/nss
.gyp:*', |
| 662 ], | 663 ], |
| 663 }], | 664 }], |
| 664 ['clang==1', { | 665 ['clang==1', { |
| 665 # FIXME: It would be nice to enable this in
shared builds too, | 666 # FIXME: It would be nice to enable this in
shared builds too, |
| (...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1276 ['clang==1', { | 1277 ['clang==1', { |
| 1277 'target_defaults': { | 1278 'target_defaults': { |
| 1278 'cflags': ['-Wglobal-constructors'], | 1279 'cflags': ['-Wglobal-constructors'], |
| 1279 'xcode_settings': { | 1280 'xcode_settings': { |
| 1280 'WARNING_CFLAGS': ['-Wglobal-constructors'], | 1281 'WARNING_CFLAGS': ['-Wglobal-constructors'], |
| 1281 }, | 1282 }, |
| 1282 }, | 1283 }, |
| 1283 }], | 1284 }], |
| 1284 ], # conditions | 1285 ], # conditions |
| 1285 } | 1286 } |
| OLD | NEW |