Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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': 'hyphen', | 8 'target_name': 'hyphen', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| 11 '.', | 11 '.', |
| 12 ], | 12 ], |
| 13 'defines': [ | 13 'defines': [ |
| 14 'HYPHEN_CHROME_CLIENT', | 14 'HYPHEN_CHROME_CLIENT', |
| 15 ], | 15 ], |
| 16 'sources': [ | 16 'sources': [ |
| 17 'hnjalloc.c', | 17 'hnjalloc.c', |
| 18 'hnjalloc.h', | 18 'hnjalloc.h', |
| 19 'hyphen.h', | 19 'hyphen.h', |
| 20 'hyphen.c', | 20 'hyphen.c', |
| 21 ], | 21 ], |
| 22 'direct_dependent_settings': { | 22 'direct_dependent_settings': { |
| 23 'defines': [ | 23 'defines': [ |
| 24 'HYPHEN_CHROME_CLIENT', | 24 'HYPHEN_CHROME_CLIENT', |
| 25 ], | 25 ], |
| 26 'include_dirs': [ | 26 'include_dirs': [ |
| 27 '.', | 27 '.', |
| 28 ], | 28 ], |
| 29 }, | 29 }, |
| 30 # TODO(jschuh): Bug 167187. Fix this. | |
|
groby-ooo-7-16
2012/12/21 22:07:59
nit: http://crbug.com/167187
| |
| 31 'msvs_disabled_warnings': [ | |
| 32 4267, | |
| 33 ], | |
| 30 }, | 34 }, |
| 31 ], | 35 ], |
| 32 } | 36 } |
| OLD | NEW |