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

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: Add missing moved files 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
« no previous file with comments | « Source/platform/graphics/DrawLooper.cpp ('k') | Source/web/ColorChooserUIController.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 '<(SHARED_INTERMEDIATE_DIR)/blink/RuntimeEnabledFeatures.h', 72 '<(SHARED_INTERMEDIATE_DIR)/blink/RuntimeEnabledFeatures.h',
73 ], 73 ],
74 'action': [ 74 'action': [
75 'python', 75 'python',
76 '../build/scripts/make_runtime_features.py', 76 '../build/scripts/make_runtime_features.py',
77 'RuntimeEnabledFeatures.in', 77 'RuntimeEnabledFeatures.in',
78 '--output_dir', 78 '--output_dir',
79 '<(SHARED_INTERMEDIATE_DIR)/blink', 79 '<(SHARED_INTERMEDIATE_DIR)/blink',
80 ], 80 ],
81 }, 81 },
82 {
83 'action_name': 'ColorData',
84 'inputs': [
85 'ColorData.gperf',
86 ],
87 'outputs': [
88 '<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp',
89 ],
90 'action': [
91 '<(gperf_exe)',
92 '--key-positions=*',
93 '-D', '-s', '2',
94 '<@(_inputs)',
95 '--output-file=<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp',
96 ],
97 },
82 ] 98 ]
83 }, 99 },
84 ], 100 ],
85 } 101 }
OLDNEW
« no previous file with comments | « Source/platform/graphics/DrawLooper.cpp ('k') | Source/web/ColorChooserUIController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698