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

Unified Diff: test/actions-multiple/src/actions.gyp

Issue 1454433002: Python 3 compatibility Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Rebase with master (4ec6c4e3a94bd04a6da2858163d40b2429b8aad1) Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: test/actions-multiple/src/actions.gyp
diff --git a/test/actions-multiple/src/actions.gyp b/test/actions-multiple/src/actions.gyp
index c70a58f702ff38ed2e82b3ce26a7dfd3eabe9bff..d7423b589f912bc3a79116559b63c2d0bfd26497 100644
--- a/test/actions-multiple/src/actions.gyp
+++ b/test/actions-multiple/src/actions.gyp
@@ -27,7 +27,7 @@
{
'action_name': 'action1',
'inputs': [
Nico 2016/07/29 22:22:06 why this change?
AWhetter 2016/11/05 23:59:50 I renamed copy.py to copyfile.py because
- 'copy.py',
+ 'copyfile.py',
'input.txt',
],
'outputs': [
@@ -42,7 +42,7 @@
{
'action_name': 'action2',
'inputs': [
- 'copy.py',
+ 'copyfile.py',
'input.txt',
],
'outputs': [
@@ -57,7 +57,7 @@
{
'action_name': 'action3',
'inputs': [
- 'copy.py',
+ 'copyfile.py',
'input.txt',
],
'outputs': [
@@ -72,7 +72,7 @@
{
'action_name': 'action4',
'inputs': [
- 'copy.py',
+ 'copyfile.py',
'input.txt',
],
'outputs': [
@@ -168,7 +168,7 @@
{
'action_name': 'action1',
'inputs': [
- 'copy.py',
+ 'copyfile.py',
'input.txt',
],
'outputs': [
@@ -183,7 +183,7 @@
{
'action_name': 'action2',
'inputs': [
- 'copy.py',
+ 'copyfile.py',
'input.txt',
],
'outputs': [
@@ -207,7 +207,7 @@
{
'action_name': 'multi_dep',
'inputs': [
- 'copy.py',
+ 'copyfile.py',
'input.txt',
],
'outputs': [

Powered by Google App Engine
This is Rietveld 408576698