| 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") |
| 6 |
| 5 static_library("courgette_lib") { | 7 static_library("courgette_lib") { |
| 6 sources = [ | 8 sources = [ |
| 7 "adjustment_method.cc", | 9 "adjustment_method.cc", |
| 8 "adjustment_method_2.cc", | 10 "adjustment_method_2.cc", |
| 9 "adjustment_method.h", | 11 "adjustment_method.h", |
| 10 "assembly_program.cc", | 12 "assembly_program.cc", |
| 11 "assembly_program.h", | 13 "assembly_program.h", |
| 12 "third_party/bsdiff.h", | 14 "third_party/bsdiff.h", |
| 13 "third_party/bsdiff_apply.cc", | 15 "third_party/bsdiff_apply.cc", |
| 14 "third_party/bsdiff_create.cc", | 16 "third_party/bsdiff_create.cc", |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 "encoded_program_fuzz_unittest.cc", | 130 "encoded_program_fuzz_unittest.cc", |
| 129 ] | 131 ] |
| 130 deps = [ | 132 deps = [ |
| 131 ":courgette_lib", | 133 ":courgette_lib", |
| 132 "//base", | 134 "//base", |
| 133 "//base:i18n", | 135 "//base:i18n", |
| 134 "//base/test:test_support", | 136 "//base/test:test_support", |
| 135 "//testing/gtest", | 137 "//testing/gtest", |
| 136 ] | 138 ] |
| 137 } | 139 } |
| OLD | NEW |