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

Side by Side Diff: third_party/WebKit/public/blink_resources.gyp

Issue 2088123002: Minimize bundled user-agent CSS: html.css (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: perf try Created 4 years, 5 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 unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698