Chromium Code Reviews
|
| OLD | NEW |
|---|---|
| (Empty) | |
| 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 ], | |
| 12 'targets': [ | |
| 13 { | |
| 14 'target_name': 'test', | |
| 15 'type': 'static_library', | |
| 16 'sources': [ 'foo.c' ], | |
| 17 }, | |
| 18 ], | |
| 19 } | |
| OLD | NEW |