Split the listing of pkg dart files in two targets.

Mac is no liking the long command line we get.

R=whesse@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37946 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
ricow@google.com 2014-07-02 13:48:54 +00:00
parent 13c67faf65
commit 43d3653324

View file

@ -17,11 +17,25 @@
'inputs': [
'../tools/create_timestamp_file.py',
'<!@(["python", "../tools/list_files.py", "\\.dart$", "."])',
'<(SHARED_INTERMEDIATE_DIR)/third_party_pkg_files.stamp',
],
'outputs': [
'<(SHARED_INTERMEDIATE_DIR)/pkg_files.stamp',
],
'action': [
'python', '../tools/create_timestamp_file.py',
'<@(_outputs)',
],
},
{
'action_name': 'make_third_party_pkg_files_stamp',
'inputs': [
'../tools/create_timestamp_file.py',
'<!@(["python", "../tools/list_files.py", "\\.dart$",'
'"../third_party/pkg"])',
],
'outputs': [
'<(SHARED_INTERMEDIATE_DIR)/pkg_files.stamp',
'<(SHARED_INTERMEDIATE_DIR)/third_party_pkg_files.stamp',
],
'action': [
'python', '../tools/create_timestamp_file.py',