OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'conditions': [ | 7 'conditions': [ |
8 ['inside_chromium_build==0', { | 8 ['inside_chromium_build==0', { |
9 'webkit_src_dir': '../../../../..', | 9 'webkit_src_dir': '../../../../..', |
10 },{ | 10 },{ |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 ], | 120 ], |
121 }, { # OS != "android"' | 121 }, { # OS != "android"' |
122 'sources/': [ | 122 'sources/': [ |
123 ['exclude', '^android/'], | 123 ['exclude', '^android/'], |
124 ], | 124 ], |
125 }], | 125 }], |
126 ['google_tv == 1', { | 126 ['google_tv == 1', { |
127 'sources': [ | 127 'sources': [ |
128 'android/media_source_delegate.cc', | 128 'android/media_source_delegate.cc', |
129 'android/media_source_delegate.h', | 129 'android/media_source_delegate.h', |
| 130 'android/webmediaplayer_tv.cc', |
| 131 'android/webmediaplayer_tv.h', |
130 ], | 132 ], |
131 'sources!': [ | 133 'sources!': [ |
132 'crypto/key_systems_info.cc', | 134 'crypto/key_systems_info.cc', |
133 ], | 135 ], |
134 }], | 136 }], |
135 ], | 137 ], |
136 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 138 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
137 'msvs_disabled_warnings': [ 4267, ], | 139 'msvs_disabled_warnings': [ 4267, ], |
138 }, | 140 }, |
139 { | 141 { |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 '<(PRODUCT_DIR)/libclearkeycdm.dylib', | 253 '<(PRODUCT_DIR)/libclearkeycdm.dylib', |
252 '<(PRODUCT_DIR)/ffmpegsumo.so' | 254 '<(PRODUCT_DIR)/ffmpegsumo.so' |
253 ] | 255 ] |
254 } | 256 } |
255 ] | 257 ] |
256 }], | 258 }], |
257 ], | 259 ], |
258 } | 260 } |
259 ], | 261 ], |
260 } | 262 } |
OLD | NEW |