OLD | NEW |
1 # | 1 # |
2 # Copyright (C) 2013 Google Inc. All rights reserved. | 2 # Copyright (C) 2013 Google Inc. All rights reserved. |
3 # | 3 # |
4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
6 # met: | 6 # met: |
7 # | 7 # |
8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 { | 328 { |
329 'target_name': 'concatenated_devtools_css', | 329 'target_name': 'concatenated_devtools_css', |
330 'type': 'none', | 330 'type': 'none', |
331 'actions': [{ | 331 'actions': [{ |
332 'action_name': 'concatenate_devtools_css', | 332 'action_name': 'concatenate_devtools_css', |
333 'script_name': 'scripts/concatenate_css_files.py', | 333 'script_name': 'scripts/concatenate_css_files.py', |
334 'input_stylesheet': 'front_end/devtools.css', | 334 'input_stylesheet': 'front_end/devtools.css', |
335 'inputs': [ | 335 'inputs': [ |
336 '<@(_script_name)', | 336 '<@(_script_name)', |
337 '<@(_input_stylesheet)', | 337 '<@(_input_stylesheet)', |
338 '<@(devtools_core_base_files)', | 338 '<@(devtools_core_css_files)', |
339 ], | 339 ], |
340 'search_path': [ 'front_end' ], | 340 'search_path': [ 'front_end' ], |
341 'outputs': ['<(PRODUCT_DIR)/resources/inspector/devtools
.css'], | 341 'outputs': ['<(PRODUCT_DIR)/resources/inspector/devtools
.css'], |
342 'action': ['python', '<@(_script_name)', '<@(_input_styl
esheet)', '<@(_outputs)'], | 342 'action': ['python', '<@(_script_name)', '<@(_input_styl
esheet)', '<@(_outputs)'], |
343 }], | 343 }], |
344 }, | 344 }, |
345 { | 345 { |
346 'target_name': 'concatenated_inspector_css', | 346 'target_name': 'concatenated_inspector_css', |
347 'type': 'none', | 347 'type': 'none', |
348 'actions': [{ | 348 'actions': [{ |
349 'action_name': 'concatenate_inspector_css', | 349 'action_name': 'concatenate_inspector_css', |
350 'script_name': 'scripts/concatenate_css_files.py', | 350 'script_name': 'scripts/concatenate_css_files.py', |
351 'input_stylesheet': 'front_end/inspector.css', | 351 'input_stylesheet': 'front_end/inspector.css', |
352 'inputs': [ | 352 'inputs': [ |
353 '<@(_script_name)', | 353 '<@(_script_name)', |
354 '<@(_input_stylesheet)', | 354 '<@(_input_stylesheet)', |
355 '<@(devtools_core_base_files)', | 355 '<@(devtools_core_css_files)', |
356 ], | 356 ], |
357 'search_path': [ 'front_end' ], | 357 'search_path': [ 'front_end' ], |
358 'outputs': ['<(PRODUCT_DIR)/resources/inspector/inspecto
r.css'], | 358 'outputs': ['<(PRODUCT_DIR)/resources/inspector/inspecto
r.css'], |
359 'action': ['python', '<@(_script_name)', '<@(_input_styl
esheet)', '<@(_outputs)'], | 359 'action': ['python', '<@(_script_name)', '<@(_input_styl
esheet)', '<@(_outputs)'], |
360 }], | 360 }], |
361 }, | 361 }, |
362 { | 362 { |
363 'target_name': 'concatenated_toolbox_css', | 363 'target_name': 'concatenated_toolbox_css', |
364 'type': 'none', | 364 'type': 'none', |
365 'actions': [{ | 365 'actions': [{ |
366 'action_name': 'concatenate_toolbox_css', | 366 'action_name': 'concatenate_toolbox_css', |
367 'script_name': 'scripts/concatenate_css_files.py', | 367 'script_name': 'scripts/concatenate_css_files.py', |
368 'input_stylesheet': 'front_end/toolbox.css', | 368 'input_stylesheet': 'front_end/toolbox.css', |
369 'inputs': [ | 369 'inputs': [ |
370 '<@(_script_name)', | 370 '<@(_script_name)', |
371 '<@(_input_stylesheet)', | 371 '<@(_input_stylesheet)', |
372 '<@(devtools_core_base_files)', | 372 '<@(devtools_core_css_files)', |
373 ], | 373 ], |
374 'search_path': [ 'front_end' ], | 374 'search_path': [ 'front_end' ], |
375 'outputs': ['<(PRODUCT_DIR)/resources/inspector/toolbox.
css'], | 375 'outputs': ['<(PRODUCT_DIR)/resources/inspector/toolbox.
css'], |
376 'action': ['python', '<@(_script_name)', '<@(_input_styl
esheet)', '<@(_outputs)'], | 376 'action': ['python', '<@(_script_name)', '<@(_input_styl
esheet)', '<@(_outputs)'], |
377 }], | 377 }], |
378 }, | 378 }, |
379 ], | 379 ], |
380 }], | 380 }], |
381 ], # conditions | 381 ], # conditions |
382 } | 382 } |
OLD | NEW |