Chromium Code Reviews| Index: icu.gyp |
| =================================================================== |
| --- icu.gyp (revision 75916) |
| +++ icu.gyp (working copy) |
| @@ -35,7 +35,6 @@ |
| 'target_name': 'icudata', |
| 'type': '<(library)', |
| 'sources': [ |
| - 'windows/icudt46.dll', |
| # These are hand-generated, but will do for now. The linux |
| # version is an identical copy of the (mac) icudt46l_dat.S file, |
| # modulo removal of the .private_extern and .const directives and |
| @@ -50,9 +49,14 @@ |
| 'conditions': [ |
| [ 'OS == "win"', { |
| 'type': 'none', |
| - 'msvs_tool_files': ['../../build/output_dll_copy.rules'], |
|
jeanluc1
2011/03/09 01:31:00
Should we delete the output_dll_copy.rules file to
|
| - }, { # else: OS != "win" |
| - 'sources!': ['windows/icudt46.dll'], |
| + 'copies': [ |
| + { |
| + 'destination': '<(PRODUCT_DIR)', |
| + 'files': [ |
| + 'windows/icudt46.dll', |
| + ], |
| + }, |
| + ], |
| }], |
| [ 'OS != "linux" or chromeos == 1', { |
| 'sources!': ['linux/icudt46l_dat.S'], |