/external/chromium_org/tools/gyp/test/win/ |
gyptest-link-entrypointsymbol.py | 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable 19 test.run_gyp('entrypointsymbol.gyp', chdir=CHDIR) 21 test.build('entrypointsymbol.gyp', 'test_ok', chdir=CHDIR) 22 test.build('entrypointsymbol.gyp', 'test_fail', chdir=CHDIR, status=1) 24 test.pass_test()
|
gyptest-link-library-adjust.py | 16 test = TestGyp.TestGyp(formats=['ninja']) variable 19 test.run_gyp('library-adjust.gyp', chdir=CHDIR) 20 test.build('library-adjust.gyp', test.ALL, chdir=CHDIR) 21 test.pass_test()
|
gyptest-link-ltcg.py | 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable 19 test.run_gyp('ltcg.gyp', chdir=CHDIR) 25 # test 'LinkTimeCodeGenerationOptionDefault' 26 test.build('ltcg.gyp', 'test_ltcg_off', chdir=CHDIR) 27 test.run_built_executable('test_ltcg_off', chdir=CHDIR) 28 test.must_not_contain_any_line(test.stdout(), [INLINE_MARKER]) 30 # test 'LinkTimeCodeGenerationOptionUse' 31 test.build('ltcg.gyp', 'test_ltcg_on', chdir=CHDIR) 32 test.must_contain_any_line(test.stdout(), ['Generating code'] [all...] |
gyptest-link-nodefaultlib.py | 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable 19 test.run_gyp('nodefaultlib.gyp', chdir=CHDIR) 21 test.build('nodefaultlib.gyp', 'test_ok', chdir=CHDIR) 22 test.build('nodefaultlib.gyp', 'test_fail', chdir=CHDIR, status=1) 24 test.pass_test()
|
gyptest-link-outputfile.py | 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable 19 test.run_gyp('outputfile.gyp', chdir=CHDIR) 20 test.build('outputfile.gyp', test.ALL, chdir=CHDIR) 22 test.built_file_must_exist('blorp.exe', chdir=CHDIR) 23 test.built_file_must_exist('blorp.dll', chdir=CHDIR) 24 test.built_file_must_exist('subdir/blorp.exe', chdir=CHDIR) 25 test.built_file_must_exist('blorp.lib', chdir=CHDIR) 26 test.built_file_must_exist('subdir/blorp.lib', chdir=CHDIR) 28 test.pass_test( [all...] |
gyptest-link-shard.py | 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable 19 test.run_gyp('shard.gyp', chdir=CHDIR) 20 test.build('shard.gyp', test.ALL, chdir=CHDIR) 22 test.built_file_must_exist('shard_0.lib', chdir=CHDIR) 23 test.built_file_must_exist('shard_1.lib', chdir=CHDIR) 24 test.built_file_must_exist('shard_2.lib', chdir=CHDIR) 25 test.built_file_must_exist('shard_3.lib', chdir=CHDIR) 27 test.pass_test()
|
gyptest-link-target-machine.py | 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable 19 test.run_gyp('target-machine.gyp', chdir=CHDIR) 22 test.build('target-machine.gyp', 'test_target_link_x86', chdir=CHDIR) 23 test.build( 25 test.build('target-machine.gyp', 'test_target_lib_x86', chdir=CHDIR) 26 test.build('target-machine.gyp', 'test_target_lib_x64', chdir=CHDIR, status=1) 28 test.pass_test()
|
gyptest-link-uldi.py | 17 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable 20 test.run_gyp('uldi.gyp', chdir=CHDIR) 23 test.build('uldi.gyp', 'final_uldi', chdir=CHDIR, status=1) 26 test.build('uldi.gyp', 'final_no_uldi', chdir=CHDIR) 28 test.pass_test()
|
gyptest-link-unsupported-manifest.py | 17 test = TestGyp.TestGyp(formats=['ninja']) variable 20 test.run_gyp('unsupported-manifest.gyp', chdir=CHDIR) 23 test.build('unsupported-manifest.gyp', 25 test.must_not_exist(test.built_file_path('test_unsupported.exe', chdir=CHDIR)) 27 test.pass_test()
|
gyptest-link-warnings-as-errors.py | 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable 19 test.run_gyp('warn-as-error.gyp', chdir=CHDIR) 21 test.build('warn-as-error.gyp', 'test_on', chdir=CHDIR, status=1) 22 test.build('warn-as-error.gyp', 'test_off', chdir=CHDIR) 23 test.build('warn-as-error.gyp', 'test_default', chdir=CHDIR) 24 test.pass_test()
|
gyptest-macro-projectname.py | 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable 19 test.run_gyp('projectname.gyp', chdir=CHDIR) 20 test.build('projectname.gyp', test.ALL, chdir=CHDIR) 21 test.built_file_must_exist('test_expansions_plus_something.exe', chdir=CHDIR) 22 test.built_file_must_exist( 24 test.pass_test()
|
gyptest-macro-vcinstalldir.py | 17 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable 20 test.run_gyp('vcinstalldir.gyp', chdir=CHDIR) 22 test.build('vcinstalldir.gyp', 'test_slash_trailing', chdir=CHDIR, status=1) 23 test.build('vcinstalldir.gyp', 'test_slash_dir', chdir=CHDIR) 24 test.pass_test()
|
gyptest-macros-containing-gyp.py | 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable 19 test.run_gyp('containing-gyp.gyp', chdir=CHDIR) 20 test.build('containing-gyp.gyp', test.ALL, chdir=CHDIR) 21 test.pass_test()
|
gyptest-midl-rules.py | 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable 19 test.run_gyp('basic-idl.gyp', chdir=CHDIR) 21 test.set_configuration('Debug|%s' % platform) 22 test.build('basic-idl.gyp', test.ALL, chdir=CHDIR) 24 test.pass_test()
|
gyptest-quoting-commands.py | 8 Make sure batch files run as actions. Regression test for previously missing 19 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable 22 test.run_gyp('batch-file-action.gyp', chdir=CHDIR) 23 test.build('batch-file-action.gyp', test.ALL, chdir=CHDIR) 25 test.pass_test()
|
gyptest-rc-build.py | 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable 19 test.run_gyp('hello.gyp', chdir=CHDIR) 20 test.build('hello.gyp', test.ALL, chdir=CHDIR) 21 test.up_to_date('hello.gyp', 'resource_only_dll', chdir=CHDIR) 22 test.run_built_executable('with_resources', chdir=CHDIR, status=4) 24 test.pass_test()
|
/external/chromium_org/tools/gyp/test/win/precompiled/ |
gyptest-all.py | 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja'], workdir='workarea_all') variable 17 test.run_gyp('hello.gyp') 18 test.build('hello.gyp', 'hello') 19 test.run_built_executable('hello', stdout="Hello, world!\nHello, two!\n") 20 test.up_to_date('hello.gyp', test.ALL) 21 test.pass_test()
|
/external/chromium_org/tools/perf/benchmarks/ |
tab_switching.py | 5 from telemetry import test namespace 10 class TabSwitchingTop10(test.Test): 11 test = tab_switching.TabSwitching variable in class:TabSwitchingTop10
|
/external/chromium_org/ui/aura/test/ |
test_windows.h | 13 #include "ui/aura/test/test_window_delegate.h" 14 #include "ui/aura/test/aura_test_base.h" 17 namespace test { namespace in namespace:aura 46 } // namespace test
|
ui_controls_factory_aura.h | 8 #include "ui/base/test/ui_controls_aura.h" 13 namespace test { namespace in namespace:aura 17 } // namespace test
|
/external/chromium_org/ui/compositor/test/ |
test_layers.cc | 5 #include "ui/compositor/test/test_layers.h" 10 namespace test { namespace in namespace:ui 23 } // namespace test
|
test_layers.h | 13 namespace test { namespace in namespace:ui 19 } // namespace test
|
/external/chromium_org/ui/events/test/ |
test_suite.h | 9 #include "base/test/test_suite.h" 12 namespace test { namespace in namespace:ui 20 } // namespace test
|
/external/chromium_org/ui/gfx/image/ |
image_unittest_util.h | 15 namespace test { namespace in namespace:gfx 86 } // namespace test
|
/external/chromium_org/ui/views/test/ |
ui_controls_factory_desktop_aurax11.h | 9 namespace test { namespace in namespace:views 13 } // namespace test
|