Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: courgette/BUILD.gn

Issue 2827103002: [Courgette] Refactor: Add CourgetteFlow; improve courgette_tool.cc help text. (Closed)
Patch Set: Add virtual destructor to BasicBuffer and its implementations. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | courgette/courgette_flow.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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",
11 "adjustment_method_2.cc", 11 "adjustment_method_2.cc",
12 "assembly_program.cc", 12 "assembly_program.cc",
13 "assembly_program.h", 13 "assembly_program.h",
14 "consecutive_range_visitor.h", 14 "consecutive_range_visitor.h",
15 "courgette.h", 15 "courgette.h",
16 "courgette_flow.cc",
17 "courgette_flow.h",
16 "crc.cc", 18 "crc.cc",
17 "crc.h", 19 "crc.h",
18 "difference_estimator.cc", 20 "difference_estimator.cc",
19 "difference_estimator.h", 21 "difference_estimator.h",
20 "disassembler.cc", 22 "disassembler.cc",
21 "disassembler.h", 23 "disassembler.h",
22 "disassembler_elf_32.cc", 24 "disassembler_elf_32.cc",
23 "disassembler_elf_32.h", 25 "disassembler_elf_32.h",
24 "disassembler_elf_32_arm.cc", 26 "disassembler_elf_32_arm.cc",
25 "disassembler_elf_32_arm.h", 27 "disassembler_elf_32_arm.h",
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 "encoded_program_fuzz_unittest.cc", 209 "encoded_program_fuzz_unittest.cc",
208 ] 210 ]
209 deps = [ 211 deps = [
210 ":courgette_lib", 212 ":courgette_lib",
211 "//base", 213 "//base",
212 "//base:i18n", 214 "//base:i18n",
213 "//base/test:test_support", 215 "//base/test:test_support",
214 "//testing/gtest", 216 "//testing/gtest",
215 ] 217 ]
216 } 218 }
OLDNEW
« no previous file with comments | « no previous file | courgette/courgette_flow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698