| 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 'includes': [ | 6 'includes': [ |
| 7 '../../build/common.gypi', | 7 '../../build/common.gypi', |
| 8 ], | 8 ], |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'defines': [ | 10 'defines': [ |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 'linux/icudt42l_dat.s', | 34 'linux/icudt42l_dat.s', |
| 35 'mac/icudt42l_dat.s', | 35 'mac/icudt42l_dat.s', |
| 36 ], | 36 ], |
| 37 'conditions': [ | 37 'conditions': [ |
| 38 [ 'OS == "win"', { | 38 [ 'OS == "win"', { |
| 39 'type': 'none', | 39 'type': 'none', |
| 40 'msvs_tool_files': ['../../build/output_dll_copy.rules'], | 40 'msvs_tool_files': ['../../build/output_dll_copy.rules'], |
| 41 }, { # else: OS != "win" | 41 }, { # else: OS != "win" |
| 42 'sources!': ['icudt42.dll'], | 42 'sources!': ['icudt42.dll'], |
| 43 }], | 43 }], |
| 44 [ 'OS != "linux"', { | 44 [ 'OS != "linux" and OS != "freebsd"', { |
| 45 'sources!': ['linux/icudt42l_dat.s'], | 45 'sources!': ['linux/icudt42l_dat.s'], |
| 46 }], | 46 }], |
| 47 [ 'OS != "mac"', { | 47 [ 'OS != "mac"', { |
| 48 'sources!': ['mac/icudt42l_dat.s'], | 48 'sources!': ['mac/icudt42l_dat.s'], |
| 49 }], | 49 }], |
| 50 ], | 50 ], |
| 51 }, | 51 }, |
| 52 { | 52 { |
| 53 'target_name': 'icui18n', | 53 'target_name': 'icui18n', |
| 54 'type': '<(library)', | 54 'type': '<(library)', |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 'cflags': [ | 394 'cflags': [ |
| 395 '-Wno-unused-function', | 395 '-Wno-unused-function', |
| 396 # TODO(port): fix ICU to not depend on this flag. | 396 # TODO(port): fix ICU to not depend on this flag. |
| 397 '-fno-strict-aliasing', | 397 '-fno-strict-aliasing', |
| 398 ], | 398 ], |
| 399 },], | 399 },], |
| 400 ], | 400 ], |
| 401 }, | 401 }, |
| 402 ], | 402 ], |
| 403 } | 403 } |
| OLD | NEW |