| 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 source_set("cld") { | 10 source_set("cld") { |
| 11 # The /win/ directory is used on all platforms. | 11 # The /win/ directory is used on all platforms. |
| 12 set_sources_assignment_filter([]) | 12 set_sources_assignment_filter([]) |
| 13 | 13 |
| 14 # This target includes its own copy of "base" which confuses the header | 14 # This target includes its own copy of "base" which confuses the header |
| 15 # checker. | 15 # checker. |
| 16 check_includes = false | 16 check_includes = false |
| 17 | 17 |
| 18 sources = [ | 18 sources = [ |
| 19 "base/basictypes.h", | 19 "base/basictypes.h", |
| 20 "base/build_config.h", | 20 "base/build_config.h", |
| 21 "base/casts.h", | 21 "base/casts.h", |
| 22 "base/commandlineflags.h", | 22 "base/commandlineflags.h", |
| 23 "base/crash.h", | 23 "base/crash.h", |
| 24 "base/dynamic_annotations.h", | 24 "base/dynamic_annotations.h", |
| 25 "base/global_strip_options.h", | 25 "base/global_strip_options.h", |
| 26 "base/log_severity.h", | 26 "base/log_severity.h", |
| 27 "base/logging.h", | 27 "base/logging.h", |
| 28 "base/macros.h", | 28 "base/macros.h", |
| 29 "base/port.h", | 29 "base/port.h", |
| 30 "base/scoped_ptr.h", | |
| 31 "base/stl_decl_msvc.h", | 30 "base/stl_decl_msvc.h", |
| 32 "base/string_util.h", | 31 "base/string_util.h", |
| 33 "base/strtoint.h", | 32 "base/strtoint.h", |
| 34 "base/template_util.h", | 33 "base/template_util.h", |
| 35 "base/type_traits.h", | 34 "base/type_traits.h", |
| 36 "base/vlog_is_on.h", | 35 "base/vlog_is_on.h", |
| 37 "encodings/compact_lang_det/cldutil.cc", | 36 "encodings/compact_lang_det/cldutil.cc", |
| 38 "encodings/compact_lang_det/cldutil.h", | 37 "encodings/compact_lang_det/cldutil.h", |
| 39 "encodings/compact_lang_det/cldutil_dbg.h", | 38 "encodings/compact_lang_det/cldutil_dbg.h", |
| 40 "encodings/compact_lang_det/cldutil_dbg_empty.cc", | 39 "encodings/compact_lang_det/cldutil_dbg_empty.cc", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "/wd4309", # Truncation of constant value. | 103 "/wd4309", # Truncation of constant value. |
| 105 ] | 104 ] |
| 106 } else { | 105 } else { |
| 107 defines = [ "COMPILER_GCC" ] | 106 defines = [ "COMPILER_GCC" ] |
| 108 } | 107 } |
| 109 | 108 |
| 110 public_deps = [ | 109 public_deps = [ |
| 111 "//third_party/icu:icuuc", | 110 "//third_party/icu:icuuc", |
| 112 ] | 111 ] |
| 113 } | 112 } |
| OLD | NEW |