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

Side by Side Diff: courgette/BUILD.gn

Issue 335973002: Minor Fixes for Windows GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « content/ppapi_plugin/BUILD.gn ('k') | third_party/yasm/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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
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",
116 "//base:i18n", 116 "//base:i18n",
117 "//base/allocator", 117 "//base/allocator",
118 "//base/test:run_all_unittests", 118 "//base/test:run_all_unittests",
119 "//base/test:test_support", 119 "//base/test:test_support",
120 "//testing/gtest", 120 "//testing/gtest",
121 ] 121 ]
122 } 122 }
123 123
124 test("courgette_fuzz") { 124 test("courgette_fuzz") {
125 sources = [ 125 sources = [
126 "base_test_unittest.cc", 126 "base_test_unittest.cc",
127 "base_test_unittest.h", 127 "base_test_unittest.h",
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/ppapi_plugin/BUILD.gn ('k') | third_party/yasm/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698