Skip to content
This repository has been archived by the owner on Apr 3, 2020. It is now read-only.

Commit

Permalink
Don't include nacl_irt_x86_64.nexe in isolate for 32 bit Linux builds…
Browse files Browse the repository at this point in the history
… which don't have it.

This is breaking after r295514 which enforces that every file listed in an isolate file exists.

BUG=414808
[email protected]

Review URL: https://codereview.chromium.org/584553006

Cr-Commit-Position: refs/heads/master@{#295548}
  • Loading branch information
John Abd-El-Malek committed Sep 18, 2014
1 parent 1fe230b commit aeae967
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion chrome/chrome.isolate
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,19 @@
'<(PRODUCT_DIR)/chrome_100_percent.pak',
'<(PRODUCT_DIR)/locales/en-US.pak',
'<(PRODUCT_DIR)/locales/fr.pak',
'<(PRODUCT_DIR)/nacl_irt_x86_64.nexe',
],
'isolate_dependency_untracked': [
'<(PRODUCT_DIR)/resources/extension/',
],
},
}],
['OS=="win" or (OS=="linux" and target_arch=="x64")', {
'variables': {
'isolate_dependency_tracked': [
'<(PRODUCT_DIR)/nacl_irt_x86_64.nexe',
],
},
}],
['OS=="mac"', {
'variables': {
'command': [
Expand Down

0 comments on commit aeae967

Please sign in to comment.