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

Side by Side Diff: courgette/BUILD.gn

Issue 774353003: gn format // (the rest) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase net Created 6 years 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 | « content/test/BUILD.gn ('k') | crypto/BUILD.gn » ('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 static_library("courgette_lib") { 5 static_library("courgette_lib") {
6 sources = [ 6 sources = [
7 "adjustment_method.cc", 7 "adjustment_method.cc",
8 "adjustment_method_2.cc", 8 "adjustment_method_2.cc",
9 "adjustment_method.h", 9 "adjustment_method.h",
10 "assembly_program.cc", 10 "assembly_program.cc",
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 "difference_estimator_unittest.cc", 95 "difference_estimator_unittest.cc",
96 "disassembler_elf_32_x86_unittest.cc", 96 "disassembler_elf_32_x86_unittest.cc",
97 "disassembler_win32_x86_unittest.cc", 97 "disassembler_win32_x86_unittest.cc",
98 "disassembler_win32_x64_unittest.cc", 98 "disassembler_win32_x64_unittest.cc",
99 "encoded_program_unittest.cc", 99 "encoded_program_unittest.cc",
100 "encode_decode_unittest.cc", 100 "encode_decode_unittest.cc",
101 "ensemble_unittest.cc", 101 "ensemble_unittest.cc",
102 "streams_unittest.cc", 102 "streams_unittest.cc",
103 "typedrva_unittest.cc", 103 "typedrva_unittest.cc",
104 "versioning_unittest.cc", 104 "versioning_unittest.cc",
105 "third_party/paged_array_unittest.cc" 105 "third_party/paged_array_unittest.cc",
106 ] 106 ]
107 107
108 if (is_win) { 108 if (is_win) {
109 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 109 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
110 cflags = [ "/wd4267" ] 110 cflags = [ "/wd4267" ]
111 } 111 }
112 112
113 deps = [ 113 deps = [
114 ":courgette_lib", 114 ":courgette_lib",
115 "//base", 115 "//base",
(...skipping 12 matching lines...) Expand all
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 }
OLDNEW
« no previous file with comments | « content/test/BUILD.gn ('k') | crypto/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698