| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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': [ '../Source/core/core_generated.gypi' ], |
| 7 'variables': { |
| 8 'html_min_css': '<(blink_core_output_dir)/html.css' |
| 9 }, |
| 6 'targets': [ | 10 'targets': [ |
| 7 { | 11 { |
| 8 'target_name': 'blink_resources', | 12 'target_name': 'blink_resources', |
| 9 'type': 'none', | 13 'type': 'none', |
| 10 'variables': { | 14 'variables': { |
| 11 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources', | 15 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources', |
| 16 'grit_additional_defines': [ |
| 17 '-E', 'html_min_css=<(html_min_css)' |
| 18 ], |
| 12 }, | 19 }, |
| 13 'actions': [ | 20 'actions': [ |
| 14 { | 21 { |
| 15 'action_name': 'generate_blink_resources', | 22 'action_name': 'generate_blink_resources', |
| 16 'variables': { | 23 'variables': { |
| 17 'grit_grd_file': 'blink_resources.grd', | 24 'grit_grd_file': 'blink_resources.grd', |
| 18 }, | 25 }, |
| 19 'includes': [ '../../../build/grit_action.gypi' ], | 26 'includes': [ '../../../build/grit_action.gypi' ], |
| 20 }, | 27 }, |
| 21 ], | 28 ], |
| (...skipping 19 matching lines...) Expand all Loading... |
| 41 }, | 48 }, |
| 42 ], | 49 ], |
| 43 'direct_dependent_settings': { | 50 'direct_dependent_settings': { |
| 44 'include_dirs': [ | 51 'include_dirs': [ |
| 45 '<(SHARED_INTERMEDIATE_DIR)', | 52 '<(SHARED_INTERMEDIATE_DIR)', |
| 46 ], | 53 ], |
| 47 }, | 54 }, |
| 48 }, | 55 }, |
| 49 ], | 56 ], |
| 50 } | 57 } |
| OLD | NEW |