OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'targets': [ | 5 'targets': [ |
6 { | 6 { |
7 # This target contains mocks and test utilities that don't belong in | 7 # This target contains mocks and test utilities that don't belong in |
8 # production libraries but are used by more than one test executable. | 8 # production libraries but are used by more than one test executable. |
9 'target_name': 'test_support_common', | 9 'target_name': 'test_support_common', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 1949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1960 ], | 1960 ], |
1961 # Bundle all the necessary resources into the test bundle. | 1961 # Bundle all the necessary resources into the test bundle. |
1962 'includes': ['chrome_ios_bundle_resources.gypi'], | 1962 'includes': ['chrome_ios_bundle_resources.gypi'], |
1963 'xcode_settings': {'OTHER_LDFLAGS': ['-ObjC']}, | 1963 'xcode_settings': {'OTHER_LDFLAGS': ['-ObjC']}, |
1964 }], | 1964 }], |
1965 ['enable_background==0', { | 1965 ['enable_background==0', { |
1966 'sources/': [ | 1966 'sources/': [ |
1967 ['exclude', '^browser/background/'], | 1967 ['exclude', '^browser/background/'], |
1968 ], | 1968 ], |
1969 }], | 1969 }], |
| 1970 ['enable_spellcheck==0', { |
| 1971 'sources/': [ |
| 1972 ['exclude', '^browser/spellchecker/'], |
| 1973 ['exclude', '^renderer/spellchecker/'], |
| 1974 ], |
| 1975 }], |
1970 ['enable_one_click_signin==0', { | 1976 ['enable_one_click_signin==0', { |
1971 'sources!': [ | 1977 'sources!': [ |
1972 'browser/ui/cocoa/one_click_signin_bubble_controller_unittest.mm', | 1978 'browser/ui/cocoa/one_click_signin_bubble_controller_unittest.mm', |
1973 'browser/ui/sync/one_click_signin_helper_unittest.cc', | 1979 'browser/ui/sync/one_click_signin_helper_unittest.cc', |
1974 ] | 1980 ] |
1975 }], | 1981 }], |
1976 ['disable_nacl==1', { | 1982 ['disable_nacl==1', { |
1977 'sources!':[ | 1983 'sources!':[ |
1978 'browser/nacl_host/nacl_file_host_unittest.cc', | 1984 'browser/nacl_host/nacl_file_host_unittest.cc', |
1979 'browser/nacl_host/nacl_validation_cache_unittest.cc', | 1985 'browser/nacl_host/nacl_validation_cache_unittest.cc', |
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2657 # more details. | 2663 # more details. |
2658 'DebugInformationFormat': '3', | 2664 'DebugInformationFormat': '3', |
2659 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 2665 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
2660 }, | 2666 }, |
2661 }, | 2667 }, |
2662 }, | 2668 }, |
2663 ], | 2669 ], |
2664 }], | 2670 }], |
2665 ], # 'conditions' | 2671 ], # 'conditions' |
2666 } | 2672 } |
OLD | NEW |