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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 "libxslt/xsltInternals.h", | 49 "libxslt/xsltInternals.h", |
50 "libxslt/xsltconfig.h", | 50 "libxslt/xsltconfig.h", |
51 "libxslt/xsltexports.h", | 51 "libxslt/xsltexports.h", |
52 "libxslt/xsltlocale.c", | 52 "libxslt/xsltlocale.c", |
53 "libxslt/xsltlocale.h", | 53 "libxslt/xsltlocale.h", |
54 "libxslt/xsltutils.c", | 54 "libxslt/xsltutils.c", |
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 "win32/config.h", |
59 ] | 60 ] |
60 | 61 |
61 configs -= [ "//build/config/compiler:chromium_code" ] | 62 configs -= [ "//build/config/compiler:chromium_code" ] |
62 configs += [ "//build/config/compiler:no_chromium_code" ] | 63 configs += [ "//build/config/compiler:no_chromium_code" ] |
63 public_configs = [ ":libxslt_config" ] | 64 public_configs = [ ":libxslt_config" ] |
64 | 65 |
65 if (is_linux || is_android) { | 66 if (is_linux || is_android) { |
66 include_dirs = [ "linux" ] | 67 include_dirs = [ "linux" ] |
67 } else if (is_win) { | 68 } else if (is_win) { |
68 include_dirs = [ "win32" ] | 69 include_dirs = [ "win32" ] |
| 70 cflags = [ "/wd4267" ] # size_t to int. |
69 } else if (is_mac) { | 71 } else if (is_mac) { |
70 include_dirs = [ "mac" ] | 72 include_dirs = [ "mac" ] |
71 } | 73 } |
72 | 74 |
73 if (is_clang) { | 75 if (is_clang) { |
74 cflags = [ "-Wno-pointer-sign" ] | 76 cflags = [ "-Wno-pointer-sign" ] |
75 } | 77 } |
76 | 78 |
77 deps = [ | 79 deps = [ |
78 "//third_party/libxml", | 80 "//third_party/libxml", |
79 ] | 81 ] |
80 } | 82 } |
OLD | NEW |