OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # Fake build.ninja file used by ../chromium.ycm_extra_conf_unittest.py | 5 # Fake build.ninja file used by ../chromium.ycm_extra_conf_unittest.py |
6 | 6 |
7 cxx = ../../fake-clang++ | 7 cxx = ../../fake-clang++ |
8 cxx2 = echo ../../fake-clang++ | 8 cxx2 = echo ../../fake-clang++ |
9 link = echo Link | 9 link = echo Link |
10 default_cc_file = ../../base/logging.cc | 10 default_cc_file = ../../base/logging.cc |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 tag = default | 45 tag = default |
46 | 46 |
47 build obj/base_unittests.logging_unittest.o: cxx $default_test_file | 47 build obj/base_unittests.logging_unittest.o: cxx $default_test_file |
48 tag = default-test | 48 tag = default-test |
49 | 49 |
50 build obj/five.o: link ../../five.cc | 50 build obj/five.o: link ../../five.cc |
51 | 51 |
52 build obj/six.o: cxx_sysroot_abs ../../six.cc | 52 build obj/six.o: cxx_sysroot_abs ../../six.cc |
53 | 53 |
54 build obj/seven.o: cxx_sysroot_rel ../../seven.cc | 54 build obj/seven.o: cxx_sysroot_rel ../../seven.cc |
| 55 |
| 56 build obj/eight.o: cxx ../../eight.m |
| 57 |
| 58 build obj/nine.o: cxx ../../nine.mm |
OLD | NEW |