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

Side by Side Diff: Source/modules/modules.gyp

Issue 314783004: Separate the generated files from core and modules to their own sub-dirs. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebaseline3 Created 6 years, 6 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
« no previous file with comments | « Source/core/core_generated.gyp ('k') | Source/modules/modules.gypi » ('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 30 matching lines...) Expand all
41 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', 41 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib',
42 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', 42 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
43 '../config.gyp:config', 43 '../config.gyp:config',
44 '../core/core.gyp:webcore', 44 '../core/core.gyp:webcore',
45 'make_modules_generated', 45 'make_modules_generated',
46 ], 46 ],
47 'defines': [ 47 'defines': [
48 'BLINK_IMPLEMENTATION=1', 48 'BLINK_IMPLEMENTATION=1',
49 'INSIDE_BLINK', 49 'INSIDE_BLINK',
50 ], 50 ],
51 'include_dirs': [
52 # FIXME: Remove these once scripts generate qualified
53 # includes correctly: http://crbug.com/380054
54 '<(blink_core_output_dir)',
55 '<(blink_modules_output_dir)',
56 ],
51 'sources': [ 57 'sources': [
52 '<@(modules_files)', 58 '<@(modules_files)',
53 '<@(bindings_modules_v8_generated_aggregate_files)', 59 '<@(bindings_modules_v8_generated_aggregate_files)',
54 ], 60 ],
55 # Disable c4267 warnings until we fix size_t to int truncations. 61 # Disable c4267 warnings until we fix size_t to int truncations.
56 'msvs_disabled_warnings': [ 4267, 4334, ] 62 'msvs_disabled_warnings': [ 4267, 4334, ]
57 }, 63 },
58 { 64 {
59 'target_name': 'modules_testing', 65 'target_name': 'modules_testing',
60 'type': 'static_library', 66 'type': 'static_library',
(...skipping 23 matching lines...) Expand all
84 ], 90 ],
85 'sources': [ 91 'sources': [
86 # bison rule 92 # bison rule
87 '../core/css/CSSGrammar.y', 93 '../core/css/CSSGrammar.y',
88 '../core/xml/XPathGrammar.y', 94 '../core/xml/XPathGrammar.y',
89 ], 95 ],
90 'actions': [ 96 'actions': [
91 ], 97 ],
92 }], 98 }],
93 } 99 }
OLDNEW
« no previous file with comments | « Source/core/core_generated.gyp ('k') | Source/modules/modules.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698