Home | History | Annotate | Download | only in wrapper
      1 # Copyright (c) 2013 Google Inc. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 {
      6   'make_global_settings': [
      7     ['CC', 'clang'],
      8     ['CC_wrapper', 'distcc'],
      9     ['LINK', 'clang++'],
     10     ['LINK_wrapper', 'distlink'],
     11     ['CC.host', 'clang'],
     12     ['CC.host_wrapper', 'ccache'],
     13   ],
     14   'targets': [
     15     {
     16       'target_name': 'test',
     17       'type': 'static_library',
     18       'sources': [ 'foo.c' ],
     19     },
     20   ],
     21 }
     22