| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'cld', | 8 'target_name': 'cld', |
| 9 'type': '<(library)', | 9 'type': '<(library)', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 'base/strtoint.h', | 84 'base/strtoint.h', |
| 85 'base/vlog_is_on.h', | 85 'base/vlog_is_on.h', |
| 86 'base/string_util.h', | 86 'base/string_util.h', |
| 87 'base/type_traits.h', | 87 'base/type_traits.h', |
| 88 'base/template_util.h', | 88 'base/template_util.h', |
| 89 ], | 89 ], |
| 90 'direct_dependent_settings': { | 90 'direct_dependent_settings': { |
| 91 'defines': [ | 91 'defines': [ |
| 92 'CLD_WINDOWS', | 92 'CLD_WINDOWS', |
| 93 ], | 93 ], |
| 94 'include_dirs': [ |
| 95 '.', |
| 96 ], |
| 94 }, | 97 }, |
| 95 'conditions': [ | 98 'conditions': [ |
| 96 ['OS=="win"', { | 99 ['OS=="win"', { |
| 97 'direct_dependent_settings': { | 100 'direct_dependent_settings': { |
| 98 'defines': [ | 101 'defines': [ |
| 99 'COMPILER_MSVC', | 102 'COMPILER_MSVC', |
| 100 ], | 103 ], |
| 101 }, | 104 }, |
| 102 'msvs_disabled_warnings': [4005, 4006, 4018, 4244, 4309, 4800], | 105 'msvs_disabled_warnings': [4005, 4006, 4018, 4244, 4309, 4800], |
| 103 }, | 106 }, |
| 104 ], | 107 ], |
| 105 ['OS!="win"', { | 108 ['OS!="win"', { |
| 106 'direct_dependent_settings': { | 109 'direct_dependent_settings': { |
| 107 'defines': [ | 110 'defines': [ |
| 108 'COMPILER_GCC', | 111 'COMPILER_GCC', |
| 109 ], | 112 ], |
| 110 }, | 113 }, |
| 111 }, | 114 }, |
| 112 ], | 115 ], |
| 113 ], | 116 ], |
| 114 }, | 117 }, |
| 115 ], | 118 ], |
| 116 } | 119 } |
| 117 | 120 |
| 118 # Local Variables: | 121 # Local Variables: |
| 119 # tab-width:2 | 122 # tab-width:2 |
| 120 # indent-tabs-mode:nil | 123 # indent-tabs-mode:nil |
| 121 # End: | 124 # End: |
| 122 # vim: set expandtab tabstop=2 shiftwidth=2: | 125 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |