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

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

Issue 26763006: Move the generation and inclusion of RuntimeEnabledFeatures to blink_platform.dll since many pieces… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Trying again 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/blink_platform.gyp ('k') | Source/web/web.gyp » ('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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 '<(SHARED_INTERMEDIATE_DIR)/blink/FontFamilyNames.h', 51 '<(SHARED_INTERMEDIATE_DIR)/blink/FontFamilyNames.h',
52 ], 52 ],
53 'action': [ 53 'action': [
54 'python', 54 'python',
55 '../build/scripts/make_names.py', 55 '../build/scripts/make_names.py',
56 'graphics/fonts/FontFamilyNames.in', 56 'graphics/fonts/FontFamilyNames.in',
57 '--output_dir', 57 '--output_dir',
58 '<(SHARED_INTERMEDIATE_DIR)/blink', 58 '<(SHARED_INTERMEDIATE_DIR)/blink',
59 ], 59 ],
60 }, 60 },
61 {
62 'action_name': 'RuntimeEnabledFeatures',
63 'inputs': [
64 '<@(scripts_for_in_files)',
65 '../build/scripts/make_runtime_features.py',
66 'RuntimeEnabledFeatures.in',
67 '../build/scripts/templates/RuntimeEnabledFeatures.cpp.tmpl',
68 '../build/scripts/templates/RuntimeEnabledFeatures.h.tmpl',
69 ],
70 'outputs': [
71 '<(SHARED_INTERMEDIATE_DIR)/blink/RuntimeEnabledFeatures.cpp',
72 '<(SHARED_INTERMEDIATE_DIR)/blink/RuntimeEnabledFeatures.h',
73 ],
74 'action': [
75 'python',
76 '../build/scripts/make_runtime_features.py',
77 'RuntimeEnabledFeatures.in',
78 '--output_dir',
79 '<(SHARED_INTERMEDIATE_DIR)/blink',
80 ],
81 },
61 ] 82 ]
62 }, 83 },
63 ], 84 ],
64 } 85 }
OLDNEW
« no previous file with comments | « Source/platform/blink_platform.gyp ('k') | Source/web/web.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698