| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/libjpeg_turb
o', | 7 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/libjpeg_turb
o', |
| 8 'conditions': [ | 8 'conditions': [ |
| 9 [ 'chromeos == 1 or (os_posix == 1 and \ | 9 [ 'chromeos == 1 or (os_posix == 1 and \ |
| 10 OS != "mac" and OS != "linux" and OS != "android")', { | 10 OS != "mac" and OS != "linux" and OS != "android")', { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 { | 28 { |
| 29 'target_name': 'libjpeg', | 29 'target_name': 'libjpeg', |
| 30 'type': '<(library)', | 30 'type': '<(library)', |
| 31 'include_dirs': [ | 31 'include_dirs': [ |
| 32 '.', | 32 '.', |
| 33 ], | 33 ], |
| 34 'defines': [ | 34 'defines': [ |
| 35 'WITH_SIMD', 'MOTION_JPEG_SUPPORTED', | 35 'WITH_SIMD', 'MOTION_JPEG_SUPPORTED', |
| 36 ], | 36 ], |
| 37 'sources': [ | 37 'sources': [ |
| 38 'jaricom.c', | |
| 39 'jcapimin.c', | 38 'jcapimin.c', |
| 40 'jcapistd.c', | 39 'jcapistd.c', |
| 41 'jcarith.c', | |
| 42 'jccoefct.c', | 40 'jccoefct.c', |
| 43 'jccolor.c', | 41 'jccolor.c', |
| 44 'jcdctmgr.c', | 42 'jcdctmgr.c', |
| 45 'jchuff.c', | 43 'jchuff.c', |
| 46 'jchuff.h', | 44 'jchuff.h', |
| 47 'jcinit.c', | 45 'jcinit.c', |
| 48 'jcmainct.c', | 46 'jcmainct.c', |
| 49 'jcmarker.c', | 47 'jcmarker.c', |
| 50 'jcmaster.c', | 48 'jcmaster.c', |
| 51 'jcomapi.c', | 49 'jcomapi.c', |
| 52 'jconfig.h', | 50 'jconfig.h', |
| 53 'jcparam.c', | 51 'jcparam.c', |
| 54 'jcphuff.c', | 52 'jcphuff.c', |
| 55 'jcprepct.c', | 53 'jcprepct.c', |
| 56 'jcsample.c', | 54 'jcsample.c', |
| 57 'jdapimin.c', | 55 'jdapimin.c', |
| 58 'jdapistd.c', | 56 'jdapistd.c', |
| 59 'jdarith.c', | |
| 60 'jdatadst.c', | 57 'jdatadst.c', |
| 61 'jdatasrc.c', | 58 'jdatasrc.c', |
| 62 'jdcoefct.c', | 59 'jdcoefct.c', |
| 63 'jdcolor.c', | 60 'jdcolor.c', |
| 64 'jdct.h', | 61 'jdct.h', |
| 65 'jddctmgr.c', | 62 'jddctmgr.c', |
| 66 'jdhuff.c', | 63 'jdhuff.c', |
| 67 'jdhuff.h', | 64 'jdhuff.h', |
| 68 'jdinput.c', | 65 'jdinput.c', |
| 69 'jdmainct.c', | 66 'jdmainct.c', |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 ], | 287 ], |
| 291 }], | 288 }], |
| 292 ], | 289 ], |
| 293 } | 290 } |
| 294 | 291 |
| 295 # Local Variables: | 292 # Local Variables: |
| 296 # tab-width:2 | 293 # tab-width:2 |
| 297 # indent-tabs-mode:nil | 294 # indent-tabs-mode:nil |
| 298 # End: | 295 # End: |
| 299 # vim: set expandtab tabstop=2 shiftwidth=2: | 296 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |