OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |