Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(521)

Side by Side Diff: chrome/third_party/hunspell/SConscript

Issue 7847: Using $CHROME_SRC_DIR in place of hash/..... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/test/tab_switching/SConscript ('k') | chrome/tools/crash_service/SConscript » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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)
OLDNEW
« no previous file with comments | « chrome/test/tab_switching/SConscript ('k') | chrome/tools/crash_service/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698