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 913373002: Update Chomium's build files to work w/ latest GN binaries. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn_cpu_arch_changes
Patch Set: cleanup / review Created 5 years, 10 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
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_2.cc", 10 "adjustment_method_2.cc",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 "encoded_program_fuzz_unittest.cc", 130 "encoded_program_fuzz_unittest.cc",
131 ] 131 ]
132 deps = [ 132 deps = [
133 ":courgette_lib", 133 ":courgette_lib",
134 "//base", 134 "//base",
135 "//base:i18n", 135 "//base:i18n",
136 "//base/test:test_support", 136 "//base/test:test_support",
137 "//testing/gtest", 137 "//testing/gtest",
138 ] 138 ]
139 } 139 }
OLDNEW
« no previous file with comments | « content/shell/android/BUILD.gn ('k') | media/BUILD.gn » ('j') | ppapi/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698