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

Side by Side Diff: Source/platform/platform_derived_sources.gyp

Issue 42313002: Move Color.*, DashArray and DrawLooper to Source/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: correct patch set 1 mistake Created 7 years, 1 month 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 # 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 14 matching lines...) Expand all
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 # 29 #
30 30
31 { 31 {
32 'includes': [ 32 'includes': [
33 '../build/features.gypi', 33 '../build/features.gypi',
34 '../build/scripts/scripts.gypi', 34 '../build/scripts/scripts.gypi',
35 '../core/core.gypi',
abarth-chromium 2013/10/25 15:24:18 This is a bad dependency. You should move the gpe
rwlbuis 2013/10/25 15:44:28 Done.
35 ], 36 ],
36 37
37 'targets': [ 38 'targets': [
38 { 39 {
39 'target_name': 'make_platform_derived_sources', 40 'target_name': 'make_platform_derived_sources',
40 'type': 'none', 41 'type': 'none',
41 'hard_dependency': 1, 42 'hard_dependency': 1,
42 'actions': [ 43 'actions': [
43 { 44 {
44 'action_name': 'FontFamilyNames', 45 'action_name': 'FontFamilyNames',
45 'inputs': [ 46 'inputs': [
46 '<@(make_names_files)', 47 '<@(make_names_files)',
47 'graphics/fonts/FontFamilyNames.in', 48 'graphics/fonts/FontFamilyNames.in',
48 ], 49 ],
49 'outputs': [ 50 'outputs': [
50 '<(SHARED_INTERMEDIATE_DIR)/blink/FontFamilyNames.cpp', 51 '<(SHARED_INTERMEDIATE_DIR)/blink/FontFamilyNames.cpp',
51 '<(SHARED_INTERMEDIATE_DIR)/blink/FontFamilyNames.h', 52 '<(SHARED_INTERMEDIATE_DIR)/blink/FontFamilyNames.h',
52 ], 53 ],
53 'action': [ 54 'action': [
54 'python', 55 'python',
55 '../build/scripts/make_names.py', 56 '../build/scripts/make_names.py',
56 'graphics/fonts/FontFamilyNames.in', 57 'graphics/fonts/FontFamilyNames.in',
57 '--output_dir', 58 '--output_dir',
58 '<(SHARED_INTERMEDIATE_DIR)/blink', 59 '<(SHARED_INTERMEDIATE_DIR)/blink',
59 ], 60 ],
60 }, 61 },
62 {
abarth-chromium 2013/10/25 15:24:18 bad indent
rwlbuis 2013/10/25 15:44:28 Done.
63 'action_name': 'ColorData',
64 'inputs': [
65 'ColorData.gperf',
66 ],
67 'outputs': [
68 '<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp',
69 ],
70 'action': [
71 '<(gperf_exe)',
72 '--key-positions=*',
73 '-D', '-s', '2',
74 '<@(_inputs)',
75 '--output-file=<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp',
76 ],
77 },
61 ] 78 ]
62 }, 79 },
63 ], 80 ],
64 } 81 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698