| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 static_library("courgette_lib") { | 5 static_library("courgette_lib") { |
| 6 sources = [ | 6 sources = [ |
| 7 "adjustment_method.cc", | 7 "adjustment_method.cc", |
| 8 "adjustment_method_2.cc", | 8 "adjustment_method_2.cc", |
| 9 "adjustment_method.h", | 9 "adjustment_method.h", |
| 10 "assembly_program.cc", | 10 "assembly_program.cc", |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 "difference_estimator_unittest.cc", | 95 "difference_estimator_unittest.cc", |
| 96 "disassembler_elf_32_x86_unittest.cc", | 96 "disassembler_elf_32_x86_unittest.cc", |
| 97 "disassembler_win32_x86_unittest.cc", | 97 "disassembler_win32_x86_unittest.cc", |
| 98 "disassembler_win32_x64_unittest.cc", | 98 "disassembler_win32_x64_unittest.cc", |
| 99 "encoded_program_unittest.cc", | 99 "encoded_program_unittest.cc", |
| 100 "encode_decode_unittest.cc", | 100 "encode_decode_unittest.cc", |
| 101 "ensemble_unittest.cc", | 101 "ensemble_unittest.cc", |
| 102 "streams_unittest.cc", | 102 "streams_unittest.cc", |
| 103 "typedrva_unittest.cc", | 103 "typedrva_unittest.cc", |
| 104 "versioning_unittest.cc", | 104 "versioning_unittest.cc", |
| 105 "third_party/paged_array_unittest.cc" | 105 "third_party/paged_array_unittest.cc", |
| 106 ] | 106 ] |
| 107 | 107 |
| 108 if (is_win) { | 108 if (is_win) { |
| 109 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 109 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 110 cflags = [ "/wd4267" ] | 110 cflags = [ "/wd4267" ] |
| 111 } | 111 } |
| 112 | 112 |
| 113 deps = [ | 113 deps = [ |
| 114 ":courgette_lib", | 114 ":courgette_lib", |
| 115 "//base", | 115 "//base", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 128 "encoded_program_fuzz_unittest.cc", | 128 "encoded_program_fuzz_unittest.cc", |
| 129 ] | 129 ] |
| 130 deps = [ | 130 deps = [ |
| 131 ":courgette_lib", | 131 ":courgette_lib", |
| 132 "//base", | 132 "//base", |
| 133 "//base:i18n", | 133 "//base:i18n", |
| 134 "//base/test:test_support", | 134 "//base/test:test_support", |
| 135 "//testing/gtest", | 135 "//testing/gtest", |
| 136 ] | 136 ] |
| 137 } | 137 } |
| OLD | NEW |