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

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: minor cleanup. 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
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': [
Nils Barth (inactive) 2014/06/04 06:09:28 Could you add a FIXME to remove once qualified, as
c.shu 2014/06/04 16:00:42 Done.
52 '<(core_output_dir)',
53 '<(modules_output_dir)',
54 ],
51 'sources': [ 55 'sources': [
52 '<@(modules_files)', 56 '<@(modules_files)',
53 '<@(bindings_modules_generated_aggregate_files)', 57 '<@(bindings_modules_generated_aggregate_files)',
54 ], 58 ],
55 # Disable c4267 warnings until we fix size_t to int truncations. 59 # Disable c4267 warnings until we fix size_t to int truncations.
56 'msvs_disabled_warnings': [ 4267, 4334, ] 60 'msvs_disabled_warnings': [ 4267, 4334, ]
57 }, 61 },
58 { 62 {
59 'target_name': 'modules_testing', 63 'target_name': 'modules_testing',
60 'type': 'static_library', 64 'type': 'static_library',
(...skipping 22 matching lines...) Expand all
83 ], 87 ],
84 'sources': [ 88 'sources': [
85 # bison rule 89 # bison rule
86 '../core/css/CSSGrammar.y', 90 '../core/css/CSSGrammar.y',
87 '../core/xml/XPathGrammar.y', 91 '../core/xml/XPathGrammar.y',
88 ], 92 ],
89 'actions': [ 93 'actions': [
90 ], 94 ],
91 }], 95 }],
92 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698