Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / native_client / src / shared / gio / build.scons
index 2257af9..da3a994 100644 (file)
@@ -11,8 +11,6 @@ env.DualLibrary('gio',
                 ['gio.c',
                  'gio_mem.c',
                  'gprintf.c',
-                 'gio_mem_snapshot.c',
-                 'gio_pio.c',
                  ])
 
 
@@ -37,8 +35,7 @@ gio_test_exe = gtest_env.ComponentProgram(
     EXTRA_LIBS=['gio', 'platform', 'gio_test'])
 
 # temp file will be removed by gio_test (if it compiles and test completes).
-temp_handle, temp_path = env.MakeTempFile(prefix='tmp_gio', suffix='.tmp')
-os.close(temp_handle)
+temp_path = env.MakeEmptyFile(prefix='tmp_gio', suffix='.tmp')
 
 node = gtest_env.CommandTest(
     'gio_test_output.xml.out',
@@ -53,28 +50,6 @@ node = gtest_env.CommandTest(
 gtest_env.AddNodeToTestSuite(node, ['small_tests'],
     'run_gio_test')
 
-gio_test_exe = gtest_env.ComponentProgram(
-    'gio_pio_test',
-    ['gio_pio_test.cc'],
-    EXTRA_LIBS=['gio', 'platform', 'gio_test'])
-
-# temp file will be removed by gio_pio_test (if it compiles and completes).
-temp_handle, temp_path = env.MakeTempFile(prefix='tmp_gio_pio', suffix='.tmp')
-os.close(temp_handle)
-
-node = gtest_env.CommandTest(
-    'gio_pio_test_output.xml.out',
-    command=[gio_test_exe,
-             '--gtest_output=xml:${TARGET}',
-             '-t', temp_path,
-   # Note: to regenerate the premade_text/binary_file, use "make_premade.py"
-             '-x', env.File('premade_text_file'),
-             '-b', env.File('premade_binary_file'),
-             ],
-    )
-gtest_env.AddNodeToTestSuite(node, ['small_tests'],
-    'run_gio_pio_test')
-
 gprintf_test_exe = env.ComponentProgram(
     'gprintf_test',
     ['gprintf_test.c'],