Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 5 'targets': [ |
| 6 { | 6 { |
| 7 'target_name': 'libvpx', | 7 'target_name': 'libvpx', |
| 8 'type': 'none', | 8 'type': 'none', |
| 9 'direct_dependent_settings': { | 9 'direct_dependent_settings': { |
| 10 'cflags': [ | 10 'cflags': [ |
| 11 '<!@(pkg-config --cflags vpx)', | 11 '<!@(pkg-config --cflags vpx)', |
| 12 ], | 12 ], |
| 13 }, | 13 }, |
| 14 'variables': { | 14 'variables': { |
| 15 'headers_root_path': 'source/libvpx', | 15 'headers_root_path': 'source/libvpx', |
| 16 'header_filenames': [ | 16 'header_filenames': [ |
| 17 'vpx/vpx_codec_impl_bottom.h', | 17 'vpx/vpx_codec_impl_bottom.h', |
|
Lei Zhang
2015/04/21 19:21:18
maybe sort the list?
Paweł Hajdan Jr.
2015/04/21 23:50:11
Done.
| |
| 18 'vpx/vpx_image.h', | 18 'vpx/vpx_image.h', |
| 19 'vpx/vpx_decoder.h', | 19 'vpx/vpx_decoder.h', |
| 20 'vpx/vp8.h', | 20 'vpx/vp8.h', |
| 21 'vpx/vpx_codec.h', | 21 'vpx/vpx_codec.h', |
| 22 'vpx/vpx_codec_impl_top.h', | 22 'vpx/vpx_codec_impl_top.h', |
| 23 'vpx/vp8cx.h', | 23 'vpx/vp8cx.h', |
| 24 'vpx/vpx_integer.h', | 24 'vpx/vpx_integer.h', |
| 25 'vpx/vp8dx.h', | 25 'vpx/vp8dx.h', |
| 26 'vpx/vpx_encoder.h', | 26 'vpx/vpx_encoder.h', |
| 27 'vpx/vpx_frame_buffer.h', | |
| 27 ], | 28 ], |
| 28 }, | 29 }, |
| 29 'includes': [ | 30 'includes': [ |
| 30 '../../build/shim_headers.gypi', | 31 '../../build/shim_headers.gypi', |
| 31 ], | 32 ], |
| 32 'link_settings': { | 33 'link_settings': { |
| 33 'ldflags': [ | 34 'ldflags': [ |
| 34 '<!@(pkg-config --libs-only-L --libs-only-other vpx)', | 35 '<!@(pkg-config --libs-only-L --libs-only-other vpx)', |
| 35 ], | 36 ], |
| 36 'libraries': [ | 37 'libraries': [ |
| 37 '<!@(pkg-config --libs-only-l vpx)', | 38 '<!@(pkg-config --libs-only-l vpx)', |
| 38 ], | 39 ], |
| 39 }, | 40 }, |
| 40 }, | 41 }, |
| 41 ], | 42 ], |
| 42 } | 43 } |
| OLD | NEW |