| 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 static_library("courgette_lib") { | 7 static_library("courgette_lib") { |
| 8 sources = [ | 8 sources = [ |
| 9 "adjustment_method.cc", | 9 "adjustment_method.cc", |
| 10 "adjustment_method.h", | 10 "adjustment_method.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 "disassembler_win32_x64.h", | 31 "disassembler_win32_x64.h", |
| 32 "disassembler_win32_x86.cc", | 32 "disassembler_win32_x86.cc", |
| 33 "disassembler_win32_x86.h", | 33 "disassembler_win32_x86.h", |
| 34 "encoded_program.cc", | 34 "encoded_program.cc", |
| 35 "encoded_program.h", | 35 "encoded_program.h", |
| 36 "ensemble.cc", | 36 "ensemble.cc", |
| 37 "ensemble.h", | 37 "ensemble.h", |
| 38 "ensemble_apply.cc", | 38 "ensemble_apply.cc", |
| 39 "ensemble_create.cc", | 39 "ensemble_create.cc", |
| 40 "image_utils.h", | 40 "image_utils.h", |
| 41 "instruction_utils.h", |
| 41 "label_manager.cc", | 42 "label_manager.cc", |
| 42 "label_manager.h", | 43 "label_manager.h", |
| 43 "memory_allocator.cc", | 44 "memory_allocator.cc", |
| 44 "memory_allocator.h", | 45 "memory_allocator.h", |
| 45 "patch_generator_x86_32.h", | 46 "patch_generator_x86_32.h", |
| 46 "patcher_x86_32.h", | 47 "patcher_x86_32.h", |
| 47 "program_detector.cc", | 48 "program_detector.cc", |
| 48 "program_detector.h", | 49 "program_detector.h", |
| 49 "region.h", | 50 "region.h", |
| 50 "rel32_finder.cc", | 51 "rel32_finder.cc", |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 "encoded_program_fuzz_unittest.cc", | 207 "encoded_program_fuzz_unittest.cc", |
| 207 ] | 208 ] |
| 208 deps = [ | 209 deps = [ |
| 209 ":courgette_lib", | 210 ":courgette_lib", |
| 210 "//base", | 211 "//base", |
| 211 "//base:i18n", | 212 "//base:i18n", |
| 212 "//base/test:test_support", | 213 "//base/test:test_support", |
| 213 "//testing/gtest", | 214 "//testing/gtest", |
| 214 ] | 215 ] |
| 215 } | 216 } |
| OLD | NEW |