diff options
Diffstat (limited to 'chrome/tools/build/win/FILES.cfg')
-rw-r--r-- | chrome/tools/build/win/FILES.cfg | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/chrome/tools/build/win/FILES.cfg b/chrome/tools/build/win/FILES.cfg index 8d9a025..5736c14 100644 --- a/chrome/tools/build/win/FILES.cfg +++ b/chrome/tools/build/win/FILES.cfg @@ -363,9 +363,23 @@ FILES = [ 'arch': ['32bit', '64bit'],
'buildtype': ['dev', 'official'],
},
+ # Native Client plugin files:
{
'filename': 'ppGoogleNaClPluginChrome.dll',
'arch': ['32bit', '64bit'],
'buildtype': ['dev', 'official'],
},
+ # Windows Chrome does not have separate x86-32 and x86-64 installs.
+ # A single install supports both x86-32 and x86-64 versions of NaCl,
+ # so the 'arch' field does not seem to make much sense in this case.
+ {
+ 'filename': 'nacl_irt_x86_32.nexe',
+ 'arch': ['32bit', '64bit'],
+ 'buildtype': ['dev', 'official'],
+ },
+ {
+ 'filename': 'nacl_irt_x86_64.nexe',
+ 'arch': ['32bit', '64bit'],
+ 'buildtype': ['dev', 'official'],
+ },
]
|