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

Side by Side Diff: tools/gn/secondary/third_party/expat/BUILD.gn

Issue 138273007: Convert GN single-item list concat to use lists. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 6 years, 11 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 | « tools/gn/secondary/testing/gtest/BUILD.gn ('k') | tools/gn/secondary/third_party/icu/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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 if (is_linux) { 5 if (is_linux) {
6 config("expat_config") { 6 config("expat_config") {
7 libs = [ "expat" ] 7 libs = [ "expat" ]
8 } 8 }
9 9
10 group("expat") { 10 group("expat") {
(...skipping 11 matching lines...) Expand all
22 static_library("expat") { 22 static_library("expat") {
23 sources = [ 23 sources = [
24 "files/lib/expat.h", 24 "files/lib/expat.h",
25 "files/lib/xmlparse.c", 25 "files/lib/xmlparse.c",
26 "files/lib/xmlrole.c", 26 "files/lib/xmlrole.c",
27 "files/lib/xmltok.c", 27 "files/lib/xmltok.c",
28 ] 28 ]
29 29
30 defines = [ "_LIB" ] 30 defines = [ "_LIB" ]
31 if (is_win) { 31 if (is_win) {
32 defines += "COMPILED_FROM_DSP" 32 defines += [ "COMPILED_FROM_DSP" ]
33 } else { 33 } else {
34 defines += "HAVE_EXPAT_CONFIG_H" 34 defines += [ "HAVE_EXPAT_CONFIG_H" ]
35 } 35 }
36 } 36 }
37 } 37 }
OLDNEW
« no previous file with comments | « tools/gn/secondary/testing/gtest/BUILD.gn ('k') | tools/gn/secondary/third_party/icu/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698