Skip to content

Commit

Permalink
Make .isolate files easier to parse with json5.
Browse files Browse the repository at this point in the history
R=maruel@chromium.org
BUG=

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

Cr-Commit-Position: refs/heads/master@{#329130}
  • Loading branch information
shishkander authored and Commit bot committed May 11, 2015
1 parent af08f18 commit d56309b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
15 changes: 5 additions & 10 deletions chrome/browser_tests.isolate
Original file line number Diff line number Diff line change
Expand Up @@ -123,16 +123,14 @@
],
},
}],
[('disable_nacl==0 and (OS=="linux" or OS=="mac" or OS=="win") and '
'(target_arch=="x64" or target_arch=="ia32")'), {
['disable_nacl==0 and (OS=="linux" or OS=="mac" or OS=="win") and (target_arch=="x64" or target_arch=="ia32")', {
'variables': {
'files': [
'<(PRODUCT_DIR)/ppapi_nacl_tests_glibc.nmf',
],
},
}],
[('disable_nacl==0 and OS=="linux" and '
'(target_arch=="ia32" or target_arch=="x64" or target_arch=="arm")'), {
['disable_nacl==0 and OS=="linux" and (target_arch=="ia32" or target_arch=="x64" or target_arch=="arm")', {
'variables': {
'files': [
'<(PRODUCT_DIR)/ppapi_nacl_tests_pnacl_nonsfi.nmf',
Expand All @@ -148,8 +146,7 @@
],
},
}],
['disable_nacl==0 and (OS=="win" or '
'((OS=="linux" or OS=="mac") and target_arch=="x64"))', {
['disable_nacl==0 and (OS=="win" or ((OS=="linux" or OS=="mac") and target_arch=="x64"))', {
'variables': {
'files': [
'<(PRODUCT_DIR)/lib64/',
Expand All @@ -159,8 +156,7 @@
],
},
}],
['disable_nacl==0 and target_arch=="ia32" and'
'(OS=="mac" or OS=="linux" or OS=="win")', {
['disable_nacl==0 and target_arch=="ia32" and (OS=="mac" or OS=="linux" or OS=="win")', {
'variables': {
'files': [
'<(PRODUCT_DIR)/lib32/',
Expand All @@ -170,8 +166,7 @@
],
},
}],
['disable_nacl==0 and OS=="linux" and '
'(target_arch=="x64" or target_arch=="ia32")', {
['disable_nacl==0 and OS=="linux" and (target_arch=="x64" or target_arch=="ia32")', {
'variables': {
'files': [
'<(PRODUCT_DIR)/ppapi_nacl_tests_pnacl_newlib_x32_nonsfi.nexe',
Expand Down
6 changes: 2 additions & 4 deletions chrome/chrome.isolate
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
]
}
}],
['disable_nacl==0 and OS=="linux" and '
'(target_arch=="x64" or target_arch=="ia32" or target_arch=="arm")', {
['disable_nacl==0 and OS=="linux" and (target_arch=="x64" or target_arch=="ia32" or target_arch=="arm")', {
'variables': {
'files': [
'<(PRODUCT_DIR)/nacl_helper_nonsfi<(EXECUTABLE_SUFFIX)',
Expand Down Expand Up @@ -48,8 +47,7 @@
],
},
}],
['disable_nacl==0 and '
'(OS=="win" or (OS=="linux" and target_arch=="x64"))', {
['disable_nacl==0 and (OS=="win" or (OS=="linux" and target_arch=="x64"))', {
'variables': {
'files': [
'<(PRODUCT_DIR)/nacl_irt_x86_64.nexe',
Expand Down

0 comments on commit d56309b

Please sign in to comment.