| 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("cld_config") { | 5 config("cld_config") { |
| 6 defines = [ "CLD_WINDOWS" ] | 6 defines = [ "CLD_WINDOWS" ] |
| 7 include_dirs = [ "." ] | 7 include_dirs = [ "." ] |
| 8 } | 8 } |
| 9 | 9 |
| 10 static_library("cld") { | 10 static_library("cld") { |
| 11 # This target includes its own copy of "base" which confuses the header |
| 12 # checker. |
| 13 check_includes = false |
| 14 |
| 11 sources = [ | 15 sources = [ |
| 12 "encodings/compact_lang_det/cldutil.cc", | 16 "encodings/compact_lang_det/cldutil.cc", |
| 13 "encodings/compact_lang_det/cldutil.h", | 17 "encodings/compact_lang_det/cldutil.h", |
| 14 "encodings/compact_lang_det/cldutil_dbg.h", | 18 "encodings/compact_lang_det/cldutil_dbg.h", |
| 15 "encodings/compact_lang_det/cldutil_dbg_empty.cc", | 19 "encodings/compact_lang_det/cldutil_dbg_empty.cc", |
| 16 "encodings/compact_lang_det/compact_lang_det.cc", | 20 "encodings/compact_lang_det/compact_lang_det.cc", |
| 17 "encodings/compact_lang_det/compact_lang_det.h", | 21 "encodings/compact_lang_det/compact_lang_det.h", |
| 18 "encodings/compact_lang_det/compact_lang_det_impl.cc", | 22 "encodings/compact_lang_det/compact_lang_det_impl.cc", |
| 19 "encodings/compact_lang_det/compact_lang_det_impl.h", | 23 "encodings/compact_lang_det/compact_lang_det_impl.h", |
| 20 "encodings/compact_lang_det/ext_lang_enc.cc", | 24 "encodings/compact_lang_det/ext_lang_enc.cc", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 } | 106 } |
| 103 | 107 |
| 104 deps = [ | 108 deps = [ |
| 105 "//third_party/icu:icuuc", | 109 "//third_party/icu:icuuc", |
| 106 ] | 110 ] |
| 107 | 111 |
| 108 forward_dependent_configs_from = [ | 112 forward_dependent_configs_from = [ |
| 109 "//third_party/icu:icuuc", | 113 "//third_party/icu:icuuc", |
| 110 ] | 114 ] |
| 111 } | 115 } |
| OLD | NEW |