| OLD | NEW |
| 1 # Copyright 2008, Google Inc. | 1 # Copyright 2008, Google Inc. |
| 2 # All rights reserved. | 2 # All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 # Copyright 2008 Google Inc. All Rights Reserved. | 30 # Copyright 2008 Google Inc. All Rights Reserved. |
| 31 | 31 |
| 32 Import('env') | 32 Import('env') |
| 33 | 33 |
| 34 env = env.Clone() | 34 env = env.Clone() |
| 35 | 35 |
| 36 env.Prepend( | 36 env.Prepend( |
| 37 CPPPATH = [ | 37 CPPPATH = [ |
| 38 '$ICU38_DIR/public/common', | 38 '$ICU38_DIR/public/common', |
| 39 '#/..', | 39 '$CHROME_SRC_DIR', |
| 40 ], | 40 ], |
| 41 ) | 41 ) |
| 42 | 42 |
| 43 env.Append( | 43 env.Append( |
| 44 CPPDEFINES = [ | 44 CPPDEFINES = [ |
| 45 'OPENOFFICEORG', | 45 'OPENOFFICEORG', |
| 46 'CHROME_SPELL', | 46 'CHROME_SPELL', |
| 47 'HUNSPELL_CHROME_CLIENT', | 47 'HUNSPELL_CHROME_CLIENT', |
| 48 ], | 48 ], |
| 49 ) | 49 ) |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 87 |
| 88 | 88 |
| 89 dictionaries = [ | 89 dictionaries = [ |
| 90 'dictionaries/en-US-1-1.bdic', | 90 'dictionaries/en-US-1-1.bdic', |
| 91 'dictionaries/en-US.dic', | 91 'dictionaries/en-US.dic', |
| 92 'dictionaries/en-US.aff', | 92 'dictionaries/en-US.aff', |
| 93 ] | 93 ] |
| 94 | 94 |
| 95 i = env.Install('$TARGET_ROOT/Dictionaries', dictionaries) | 95 i = env.Install('$TARGET_ROOT/Dictionaries', dictionaries) |
| 96 env.Alias('chrome', i) | 96 env.Alias('chrome', i) |
| OLD | NEW |