| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', | 53 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', |
| 54 '<(DEPTH)/third_party/libxslt/libxslt.gyp:libxslt', | 54 '<(DEPTH)/third_party/libxslt/libxslt.gyp:libxslt', |
| 55 '<(DEPTH)/third_party/libwebp/libwebp.gyp:libwebp', | 55 '<(DEPTH)/third_party/libwebp/libwebp.gyp:libwebp', |
| 56 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', | 56 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', |
| 57 '<(DEPTH)/third_party/qcms/qcms.gyp:qcms', | 57 '<(DEPTH)/third_party/qcms/qcms.gyp:qcms', |
| 58 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', | 58 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', |
| 59 '<(DEPTH)/third_party/v8-i18n/build/all.gyp:v8-i18n', | 59 '<(DEPTH)/third_party/v8-i18n/build/all.gyp:v8-i18n', |
| 60 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', | 60 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', |
| 61 '<(libjpeg_gyp_path):libjpeg', | 61 '<(libjpeg_gyp_path):libjpeg', |
| 62 ], | 62 ], |
| 63 'defines': [ |
| 64 'WEBKIT_IMPLEMENTATION=1', |
| 65 ], |
| 63 'include_dirs': [ | 66 'include_dirs': [ |
| 64 # FIXME: Remove <(SHARED_INTERMEDIATE_DIR)/webcore when we | 67 # FIXME: Remove <(SHARED_INTERMEDIATE_DIR)/webcore when we |
| 65 # can entice gyp into letting us put both the .cpp and .h | 68 # can entice gyp into letting us put both the .cpp and .h |
| 66 # files in the same output directory. | 69 # files in the same output directory. |
| 67 '<(SHARED_INTERMEDIATE_DIR)/webcore', | 70 '<(SHARED_INTERMEDIATE_DIR)/webcore', |
| 68 ], | 71 ], |
| 69 'xcode_settings': { | 72 'xcode_settings': { |
| 70 # Some Mac-specific parts of WebKit won't compile without having this | 73 # Some Mac-specific parts of WebKit won't compile without having this |
| 71 # prefix header injected. | 74 # prefix header injected. |
| 72 # FIXME: make this a first-class setting. | 75 # FIXME: make this a first-class setting. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 84 }], | 87 }], |
| 85 ['OS in ("linux", "android") and "WTF_USE_WEBAUDIO_IPP=1" in feature_def
ines', { | 88 ['OS in ("linux", "android") and "WTF_USE_WEBAUDIO_IPP=1" in feature_def
ines', { |
| 86 'cflags': [ | 89 'cflags': [ |
| 87 '<!@(pkg-config --cflags-only-I ipp)', | 90 '<!@(pkg-config --cflags-only-I ipp)', |
| 88 ], | 91 ], |
| 89 }], | 92 }], |
| 90 ], | 93 ], |
| 91 }, | 94 }, |
| 92 ], | 95 ], |
| 93 } | 96 } |
| OLD | NEW |