| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 '../third_party/WebKit/WebKit/chromium/features.gypi', | 7 '../third_party/WebKit/WebKit/chromium/features.gypi', |
| 8 '../third_party/WebKit/WebCore/WebCore.gypi', | 8 '../third_party/WebKit/WebCore/WebCore.gypi', |
| 9 ], | 9 ], |
| 10 'variables': { | 10 'variables': { |
| (...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 'type': 'none', | 505 'type': 'none', |
| 506 'msvs_guid': '9BE5D4D5-E800-44F9-B6C0-27DF15A9D817', | 506 'msvs_guid': '9BE5D4D5-E800-44F9-B6C0-27DF15A9D817', |
| 507 'sources': [ | 507 'sources': [ |
| 508 '<(PRODUCT_DIR)/resources/inspector/devtools.html', | 508 '<(PRODUCT_DIR)/resources/inspector/devtools.html', |
| 509 ], | 509 ], |
| 510 'actions': [ | 510 'actions': [ |
| 511 { | 511 { |
| 512 'action_name': 'devtools_html', | 512 'action_name': 'devtools_html', |
| 513 'inputs': [ | 513 'inputs': [ |
| 514 'build/generate_devtools_html.py', | 514 'build/generate_devtools_html.py', |
| 515 # See issue 29695: webkit.gyp is a source file for devtools.html. |
| 516 'webkit.gyp', |
| 515 '../third_party/WebKit/WebCore/inspector/front-end/inspector.html', | 517 '../third_party/WebKit/WebCore/inspector/front-end/inspector.html', |
| 516 ], | 518 ], |
| 517 'outputs': [ | 519 'outputs': [ |
| 518 '<(PRODUCT_DIR)/resources/inspector/devtools.html', | 520 '<(PRODUCT_DIR)/resources/inspector/devtools.html', |
| 519 ], | 521 ], |
| 520 'action': ['python', '<@(_inputs)', '<@(_outputs)', '<@(devtools_files
)'], | 522 'action': ['python', '<@(_inputs)', '<@(_outputs)', '<@(devtools_files
)'], |
| 521 }, | 523 }, |
| 522 ], | 524 ], |
| 523 }, | 525 }, |
| 524 { | 526 { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 548 ], | 550 ], |
| 549 }, | 551 }, |
| 550 ], # targets | 552 ], # targets |
| 551 } | 553 } |
| 552 | 554 |
| 553 # Local Variables: | 555 # Local Variables: |
| 554 # tab-width:2 | 556 # tab-width:2 |
| 555 # indent-tabs-mode:nil | 557 # indent-tabs-mode:nil |
| 556 # End: | 558 # End: |
| 557 # vim: set expandtab tabstop=2 shiftwidth=2: | 559 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |