| 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_2.cc", | 10 "adjustment_method_2.cc", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "patcher_x86_32.h", | 51 "patcher_x86_32.h", |
| 52 ] | 52 ] |
| 53 | 53 |
| 54 deps = [ | 54 deps = [ |
| 55 "//base", | 55 "//base", |
| 56 "//third_party/lzma_sdk", | 56 "//third_party/lzma_sdk", |
| 57 ] | 57 ] |
| 58 } | 58 } |
| 59 | 59 |
| 60 executable("courgette") { | 60 executable("courgette") { |
| 61 if (is_win && cpu_arch == "x64") { | 61 if (is_win && current_cpu == "x64") { |
| 62 # The build infrastructure needs courgette to be named courgette64. | 62 # The build infrastructure needs courgette to be named courgette64. |
| 63 output_name = "courgette64" | 63 output_name = "courgette64" |
| 64 } | 64 } |
| 65 | 65 |
| 66 sources = [ | 66 sources = [ |
| 67 "courgette_tool.cc", | 67 "courgette_tool.cc", |
| 68 ] | 68 ] |
| 69 | 69 |
| 70 if (is_win) { | 70 if (is_win) { |
| 71 ldflags = [ "/LARGEADDRESSAWARE" ] | 71 ldflags = [ "/LARGEADDRESSAWARE" ] |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |