Home | History | Annotate | Download | only in wtf
      1 # Copyright (C) 2013 Google Inc. All rights reserved.
      2 #
      3 # Redistribution and use in source and binary forms, with or without
      4 # modification, are permitted provided that the following conditions are
      5 # met:
      6 #
      7 #     * Redistributions of source code must retain the above copyright
      8 # notice, this list of conditions and the following disclaimer.
      9 #     * Redistributions in binary form must reproduce the above
     10 # copyright notice, this list of conditions and the following disclaimer
     11 # in the documentation and/or other materials provided with the
     12 # distribution.
     13 #     * Neither the name of Google Inc. nor the names of its
     14 # contributors may be used to endorse or promote products derived from
     15 # this software without specific prior written permission.
     16 #
     17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     28 {
     29   'includes': [
     30     '../build/win/precompile.gypi',
     31     'wtf.gypi',
     32   ],
     33   'targets': [
     34     {
     35       'target_name': 'wtf_unittests',
     36       'type': 'executable',
     37       'dependencies': [
     38         'run_all_tests',
     39         'wtf_unittest_helpers',
     40         'wtf.gyp:wtf',
     41         '../config.gyp:unittest_config',
     42       ],
     43       'sources': [
     44         '<@(wtf_unittest_files)',
     45       ],
     46       # Disable c4267 warnings until we fix size_t to int truncations.
     47       'msvs_disabled_warnings': [4127, 4510, 4512, 4610, 4706, 4068, 4267],
     48       'conditions': [
     49         ['os_posix==1 and OS!="mac" and OS!="android" and OS!="ios" and use_allocator!="none"', {
     50           'dependencies': [
     51             '<(DEPTH)/base/base.gyp:base',
     52             '<(DEPTH)/base/allocator/allocator.gyp:allocator',
     53           ],
     54         }],
     55         ['OS=="android"', {
     56           'type': 'shared_library',
     57           'dependencies': [
     58             '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
     59             '<(DEPTH)/tools/android/forwarder2/forwarder.gyp:forwarder2',
     60           ],
     61         }],
     62       ]
     63     },
     64     {
     65       'target_name': 'run_all_tests',
     66       'type': 'static_library',
     67       'dependencies': [
     68         '../config.gyp:unittest_config',
     69         '<(DEPTH)/base/base.gyp:test_support_base',
     70       ],
     71       'export_dependent_settings': [
     72         '<(DEPTH)/base/base.gyp:test_support_base',
     73       ],
     74       'sources': [
     75         'testing/RunAllTests.cpp',
     76       ]
     77     },
     78     {
     79       'target_name': 'wtf_unittest_helpers',
     80       'type': '<(component)',
     81       'include_dirs': [
     82         '..',
     83       ],
     84       'dependencies': [
     85         'wtf.gyp:wtf',
     86       ],
     87       'defines': [
     88         'WTF_UNITTEST_HELPERS_IMPLEMENTATION=1',
     89       ],
     90       'sources': [
     91         '<@(wtf_unittest_helper_files)',
     92       ],
     93     },
     94   ],
     95   'conditions': [
     96     ['OS=="android" and android_webview_build==0 and gtest_target_type=="shared_library"', {
     97       'targets': [{
     98         'target_name': 'wtf_unittests_apk',
     99         'type': 'none',
    100         'dependencies': [
    101           '<(DEPTH)/base/base.gyp:base_java',
    102           '<(DEPTH)/net/net.gyp:net_java',
    103           'wtf_unittests',
    104         ],
    105         'variables': {
    106           'test_suite_name': 'wtf_unittests',
    107         },
    108         'includes': [ '../../../../build/apk_test.gypi' ],
    109       }],
    110     }],
    111   ],
    112 }
    113