| 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 24 matching lines...) Expand all Loading... |
| 35 "ensemble.h", | 35 "ensemble.h", |
| 36 "ensemble_apply.cc", | 36 "ensemble_apply.cc", |
| 37 "ensemble_create.cc", | 37 "ensemble_create.cc", |
| 38 "image_utils.h", | 38 "image_utils.h", |
| 39 "label_manager.cc", | 39 "label_manager.cc", |
| 40 "label_manager.h", | 40 "label_manager.h", |
| 41 "memory_allocator.cc", | 41 "memory_allocator.cc", |
| 42 "memory_allocator.h", | 42 "memory_allocator.h", |
| 43 "patch_generator_x86_32.h", | 43 "patch_generator_x86_32.h", |
| 44 "patcher_x86_32.h", | 44 "patcher_x86_32.h", |
| 45 "program_detector.cc", |
| 46 "program_detector.h", |
| 45 "region.h", | 47 "region.h", |
| 46 "rel32_finder_win32_x86.cc", | 48 "rel32_finder_win32_x86.cc", |
| 47 "rel32_finder_win32_x86.h", | 49 "rel32_finder_win32_x86.h", |
| 48 "simple_delta.cc", | 50 "simple_delta.cc", |
| 49 "simple_delta.h", | 51 "simple_delta.h", |
| 50 "streams.cc", | 52 "streams.cc", |
| 51 "streams.h", | 53 "streams.h", |
| 52 "third_party/bsdiff.h", | 54 "third_party/bsdiff.h", |
| 53 "third_party/bsdiff_apply.cc", | 55 "third_party/bsdiff_apply.cc", |
| 54 "third_party/bsdiff_create.cc", | 56 "third_party/bsdiff_create.cc", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 "encoded_program_fuzz_unittest.cc", | 145 "encoded_program_fuzz_unittest.cc", |
| 144 ] | 146 ] |
| 145 deps = [ | 147 deps = [ |
| 146 ":courgette_lib", | 148 ":courgette_lib", |
| 147 "//base", | 149 "//base", |
| 148 "//base:i18n", | 150 "//base:i18n", |
| 149 "//base/test:test_support", | 151 "//base/test:test_support", |
| 150 "//testing/gtest", | 152 "//testing/gtest", |
| 151 ] | 153 ] |
| 152 } | 154 } |
| OLD | NEW |