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': { | |
7 'conditions': [ | |
8 ['inside_chromium_build==0', { | |
9 'webkit_src_dir': '../../../..', | |
10 },{ | |
11 'webkit_src_dir': '../third_party/WebKit', | |
12 }], | |
13 ], | |
14 }, | |
15 'target_defaults': { | 6 'target_defaults': { |
16 'variables': { | 7 'variables': { |
17 'ppapi_shared_target': 0, | 8 'ppapi_shared_target': 0, |
18 }, | 9 }, |
19 'target_conditions': [ | 10 'target_conditions': [ |
20 # This part is shared between the targets defined below. | 11 # This part is shared between the targets defined below. |
21 ['ppapi_shared_target==1', { | 12 ['ppapi_shared_target==1', { |
22 'sources': [ | 13 'sources': [ |
23 'shared_impl/array_var.cc', | 14 'shared_impl/array_var.cc', |
24 'shared_impl/array_var.h', | 15 'shared_impl/array_var.h', |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 'thunk/ppb_tcp_socket_private_thunk.cc', | 324 'thunk/ppb_tcp_socket_private_thunk.cc', |
334 'thunk/ppb_udp_socket_private_thunk.cc', | 325 'thunk/ppb_udp_socket_private_thunk.cc', |
335 'thunk/ppb_x509_certificate_private_thunk.cc', | 326 'thunk/ppb_x509_certificate_private_thunk.cc', |
336 ], | 327 ], |
337 }], | 328 }], |
338 ], | 329 ], |
339 }], | 330 }], |
340 ], | 331 ], |
341 }, | 332 }, |
342 } | 333 } |
OLD | NEW |