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

Side by Side Diff: third_party/libxslt/BUILD.gn

Issue 461903002: GN: Add mojo_shell_tests, get more things working on android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix up android linking Created 6 years, 4 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 | « mojo/system.gni ('k') | third_party/zlib/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 config("libxslt_config") { 5 config("libxslt_config") {
6 defines = [ "LIBXSLT_STATIC" ] 6 defines = [ "LIBXSLT_STATIC" ]
7 include_dirs = [ "." ] 7 include_dirs = [ "." ]
8 } 8 }
9 9
10 static_library("libxslt") { 10 static_library("libxslt") {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "libxslt/xsltutils.h", 55 "libxslt/xsltutils.h",
56 "libxslt/xsltwin32config.h", 56 "libxslt/xsltwin32config.h",
57 "linux/config.h", 57 "linux/config.h",
58 "mac/config.h", 58 "mac/config.h",
59 ] 59 ]
60 60
61 configs -= [ "//build/config/compiler:chromium_code" ] 61 configs -= [ "//build/config/compiler:chromium_code" ]
62 configs += [ "//build/config/compiler:no_chromium_code" ] 62 configs += [ "//build/config/compiler:no_chromium_code" ]
63 direct_dependent_configs = [ ":libxslt_config" ] 63 direct_dependent_configs = [ ":libxslt_config" ]
64 64
65 if (is_linux) { 65 if (is_linux || is_android) {
66 include_dirs = [ "linux" ] 66 include_dirs = [ "linux" ]
67 } else if (is_win) { 67 } else if (is_win) {
68 include_dirs = [ "win32" ] 68 include_dirs = [ "win32" ]
69 } else if (is_mac) { 69 } else if (is_mac) {
70 include_dirs = [ "mac" ] 70 include_dirs = [ "mac" ]
71 } 71 }
72 72
73 if (is_clang) { 73 if (is_clang) {
74 cflags = [ "-Wno-pointer-sign" ] 74 cflags = [ "-Wno-pointer-sign" ]
75 } 75 }
76 76
77 deps = [ 77 deps = [
78 "//third_party/libxml", 78 "//third_party/libxml",
79 ] 79 ]
80 } 80 }
OLDNEW
« no previous file with comments | « mojo/system.gni ('k') | third_party/zlib/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698