Chromium Code Reviews| Index: build/common.gypi |
| =================================================================== |
| --- build/common.gypi (revision 67654) |
| +++ build/common.gypi (working copy) |
| @@ -140,6 +140,11 @@ |
| # Remoting compilation is enabled by default. Set to 0 to disable. |
| 'remoting%': 1, |
| + # The relative path from 'src/third_party' to the GYP file of the JPEG |
|
Mark Mentovai
2010/11/30 15:06:01
This doesn’t need to be relative to src/third_part
Hironori Bono
2010/12/03 09:32:16
Done. Thank you for noticing it. (Such comments ar
|
| + # library used by Chromium. To use libjpeg-turbo instead of libjpeg, we |
| + # need to change this variable to 'libjpeg_turbo/libjpeg.gyp'. |
| + 'libjpeg_gyp_path%': 'libjpeg/libjpeg.gyp', |
| + |
| 'library%': '<(library)', |
| # Variable 'component' is for cases where we would like to build some |
| @@ -169,6 +174,7 @@ |
| 'sysroot%': '<(sysroot)', |
| 'disable_sse2%': '<(disable_sse2)', |
| 'remoting%': '<(remoting)', |
| + 'libjpeg_gyp_path%': '<(libjpeg_gyp_path)', |
|
Mark Mentovai
2010/11/30 15:06:01
It still might be a good idea to have a condition
Hironori Bono
2010/12/03 09:32:16
Done. I have added a 'use_libjpeg_turbo' variable
|
| 'library%': '<(library)', |
| 'component%': '<(component)', |