1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/media/webrtc/trunk/tools/gyp/test/rules-variables/src/subdir/test.c Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +// Copyright (c) 2011 Google Inc. All rights reserved. 1.5 +// Use of this source code is governed by a BSD-style license that can be 1.6 +// found in the LICENSE file. 1.7 + 1.8 +extern void input_root(); 1.9 +extern void input_dirname(); 1.10 +extern void input_path(); 1.11 +extern void input_ext(); 1.12 +extern void input_name(); 1.13 + 1.14 +int main() { 1.15 + input_root(); 1.16 + input_dirname(); 1.17 + input_path(); 1.18 + input_ext(); 1.19 + input_name(); 1.20 + return 0; 1.21 +}