OLD | NEW |
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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 'xcode_settings': { | 170 'xcode_settings': { |
171 # Some Mac-specific parts of WebKit won't compile without having this | 171 # Some Mac-specific parts of WebKit won't compile without having this |
172 # prefix header injected. | 172 # prefix header injected. |
173 'GCC_PREFIX_HEADER': '<(DEPTH)/third_party/WebKit/Source/build/mac/Prefix.
h', | 173 'GCC_PREFIX_HEADER': '<(DEPTH)/third_party/WebKit/Source/build/mac/Prefix.
h', |
174 }, | 174 }, |
175 'sources': [ | 175 'sources': [ |
176 '<@(platform_files)', | 176 '<@(platform_files)', |
177 '<@(platform_heap_files)', | 177 '<@(platform_heap_files)', |
178 | 178 |
179 # Additional .cpp files from platform_generated.gyp:make_platform_generate
d actions. | 179 # Additional .cpp files from platform_generated.gyp:make_platform_generate
d actions. |
180 '<(blink_platform_output_dir)/CharacterData.cpp', | |
181 '<(blink_platform_output_dir)/ColorData.cpp', | 180 '<(blink_platform_output_dir)/ColorData.cpp', |
182 '<(blink_platform_output_dir)/FontFamilyNames.cpp', | 181 '<(blink_platform_output_dir)/FontFamilyNames.cpp', |
183 '<(blink_platform_output_dir)/HTTPNames.cpp', | 182 '<(blink_platform_output_dir)/HTTPNames.cpp', |
184 '<(blink_platform_output_dir)/RuntimeEnabledFeatures.cpp', | 183 '<(blink_platform_output_dir)/RuntimeEnabledFeatures.cpp', |
185 '<(blink_platform_output_dir)/RuntimeEnabledFeatures.h', | 184 '<(blink_platform_output_dir)/RuntimeEnabledFeatures.h', |
186 ], | 185 ], |
187 'sources/': [ | 186 'sources/': [ |
188 # Exclude all platform specific things, reinclude them below on a per-plat
form basis | 187 # Exclude all platform specific things, reinclude them below on a per-plat
form basis |
189 # FIXME: Figure out how to store these patterns in a variable. | 188 # FIXME: Figure out how to store these patterns in a variable. |
190 ['exclude', '(cf|cg|mac|opentype|win)/'], | 189 ['exclude', '(cf|cg|mac|opentype|win)/'], |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 ['OS=="android"', { | 411 ['OS=="android"', { |
413 'cflags!': ['-mthumb'], | 412 'cflags!': ['-mthumb'], |
414 }], | 413 }], |
415 ], | 414 ], |
416 },{ # target_arch!="arm" | 415 },{ # target_arch!="arm" |
417 'type': 'none', | 416 'type': 'none', |
418 }], | 417 }], |
419 ], | 418 ], |
420 }], | 419 }], |
421 } | 420 } |
OLD | NEW |