Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(367)

Side by Side Diff: chrome/chrome_tests.gypi

Issue 12848005: [chromedriver] Separate stuff of chrome from chromedriver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments and fix compile error on mac. Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/test/chromedriver/README.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables' : { 5 'variables' : {
6 'pyautolib_sources': [ 6 'pyautolib_sources': [
7 'app/chrome_command_ids.h', 7 'app/chrome_command_ids.h',
8 'app/chrome_dll_resource.h', 8 'app/chrome_dll_resource.h',
9 'common/automation_constants.h', 9 'common/automation_constants.h',
10 'common/pref_names.cc', 10 'common/pref_names.cc',
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 }, 713 },
714 }, 714 },
715 }, 715 },
716 }, 716 },
717 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 717 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
718 'msvs_disabled_warnings': [ 4267, ], 718 'msvs_disabled_warnings': [ 4267, ],
719 }], 719 }],
720 ], 720 ],
721 }, 721 },
722 { 722 {
723 'target_name': 'chromedriver2_lib', 723 'target_name': 'chrome_devtools_lib',
724 'type': 'static_library', 724 'type': 'static_library',
725 'hard_dependency': 1,
725 'dependencies': [ 726 'dependencies': [
726 '../base/base.gyp:base', 727 '../base/base.gyp:base',
727 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 728 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
728 '../build/temp_gyp/googleurl.gyp:googleurl', 729 '../build/temp_gyp/googleurl.gyp:googleurl',
729 '../net/net.gyp:net', 730 '../net/net.gyp:net',
730 '../third_party/zlib/zlib.gyp:minizip', 731 '../third_party/zlib/zlib.gyp:minizip',
731 '../third_party/zlib/zlib.gyp:zlib', 732 '../third_party/zlib/zlib.gyp:zlib',
732 '../ui/ui.gyp:ui', 733 '../ui/ui.gyp:ui',
733 ], 734 ],
734 'include_dirs': [ 735 'include_dirs': [
735 '..', 736 '..',
736 '<(INTERMEDIATE_DIR)', 737 '<(SHARED_INTERMEDIATE_DIR)',
737 ], 738 ],
739 'direct_dependent_settings': {
740 'include_dirs': [
741 '<(SHARED_INTERMEDIATE_DIR)',
742 ],
743 },
738 'sources': [ 744 'sources': [
739 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver/js.cc', 745 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/chrome/js.cc',
740 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver/js.h', 746 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/chrome/js.h',
741 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver/user_data_dir.cc', 747 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/chrome/user_data_di r.cc',
742 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver/user_data_dir.h', 748 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/chrome/user_data_di r.h',
743 '../third_party/webdriver/atoms.cc', 749 'test/chromedriver/chrome/chrome.h',
744 '../third_party/webdriver/atoms.h', 750 'test/chromedriver/chrome/chrome_finder.cc',
745 'test/chromedriver/basic_types.cc', 751 'test/chromedriver/chrome/chrome_finder.h',
746 'test/chromedriver/basic_types.h', 752 'test/chromedriver/chrome/chrome_finder_mac.mm',
747 'test/chromedriver/chrome.h', 753 'test/chromedriver/chrome/chrome_impl.cc',
748 'test/chromedriver/chrome_finder.cc', 754 'test/chromedriver/chrome/chrome_impl.h',
749 'test/chromedriver/chrome_finder.h', 755 'test/chromedriver/chrome/chrome_android_impl.cc',
750 'test/chromedriver/chrome_finder_mac.mm', 756 'test/chromedriver/chrome/chrome_android_impl.h',
751 'test/chromedriver/chrome_impl.cc', 757 'test/chromedriver/chrome/chrome_desktop_impl.cc',
752 'test/chromedriver/chrome_impl.h', 758 'test/chromedriver/chrome/chrome_desktop_impl.h',
753 'test/chromedriver/chrome_android_impl.cc', 759 'test/chromedriver/chrome/devtools_client.cc',
754 'test/chromedriver/chrome_android_impl.h', 760 'test/chromedriver/chrome/devtools_client.h',
755 'test/chromedriver/chrome_desktop_impl.cc', 761 'test/chromedriver/chrome/devtools_client_impl.cc',
756 'test/chromedriver/chrome_desktop_impl.h', 762 'test/chromedriver/chrome/devtools_client_impl.h',
757 'test/chromedriver/chromedriver.cc', 763 'test/chromedriver/chrome/devtools_event_listener.h',
758 'test/chromedriver/chromedriver.h', 764 'test/chromedriver/chrome/dom_tracker.cc',
759 'test/chromedriver/command.h', 765 'test/chromedriver/chrome/dom_tracker.h',
760 'test/chromedriver/command_executor.h', 766 'test/chromedriver/chrome/frame_tracker.cc',
761 'test/chromedriver/command_executor_impl.cc', 767 'test/chromedriver/chrome/frame_tracker.h',
762 'test/chromedriver/command_executor_impl.h', 768 'test/chromedriver/chrome/javascript_dialog_manager.cc',
763 'test/chromedriver/command_names.cc', 769 'test/chromedriver/chrome/javascript_dialog_manager.h',
764 'test/chromedriver/command_names.h', 770 'test/chromedriver/chrome/navigation_tracker.cc',
765 'test/chromedriver/commands.cc', 771 'test/chromedriver/chrome/navigation_tracker.h',
766 'test/chromedriver/commands.h', 772 'test/chromedriver/chrome/status.cc',
767 'test/chromedriver/devtools_client.cc', 773 'test/chromedriver/chrome/status.h',
768 'test/chromedriver/devtools_client.h', 774 'test/chromedriver/chrome/ui_events.cc',
769 'test/chromedriver/devtools_client_impl.cc', 775 'test/chromedriver/chrome/ui_events.h',
770 'test/chromedriver/devtools_client_impl.h', 776 'test/chromedriver/chrome/version.cc',
771 'test/chromedriver/devtools_event_listener.h', 777 'test/chromedriver/chrome/version.h',
772 'test/chromedriver/dom_tracker.cc', 778 'test/chromedriver/chrome/web_view_delegate.h',
773 'test/chromedriver/dom_tracker.h', 779 'test/chromedriver/chrome/web_view.h',
774 'test/chromedriver/element_commands.cc', 780 'test/chromedriver/chrome/web_view_impl.cc',
775 'test/chromedriver/element_commands.h', 781 'test/chromedriver/chrome/web_view_impl.h',
776 'test/chromedriver/element_util.cc', 782 'test/chromedriver/chrome/zip.cc',
777 'test/chromedriver/element_util.h', 783 'test/chromedriver/chrome/zip.h',
778 'test/chromedriver/frame_tracker.cc', 784 'test/chromedriver/chrome/zip_internal.cc',
779 'test/chromedriver/frame_tracker.h', 785 'test/chromedriver/chrome/zip_internal.h',
780 'test/chromedriver/javascript_dialog_manager.cc', 786 'test/chromedriver/chrome/zip_reader.cc',
781 'test/chromedriver/javascript_dialog_manager.h', 787 'test/chromedriver/chrome/zip_reader.h',
782 'test/chromedriver/key_converter.cc',
783 'test/chromedriver/key_converter.h',
784 'test/chromedriver/keycode_text_conversion.h',
785 'test/chromedriver/keycode_text_conversion_mac.mm',
786 'test/chromedriver/keycode_text_conversion_win.cc',
787 'test/chromedriver/keycode_text_conversion_x.cc',
788 'test/chromedriver/navigation_tracker.cc',
789 'test/chromedriver/navigation_tracker.h',
790 'test/chromedriver/net/net_util.cc', 788 'test/chromedriver/net/net_util.cc',
791 'test/chromedriver/net/net_util.h', 789 'test/chromedriver/net/net_util.h',
792 'test/chromedriver/net/sync_websocket.h', 790 'test/chromedriver/net/sync_websocket.h',
793 'test/chromedriver/net/sync_websocket_factory.cc', 791 'test/chromedriver/net/sync_websocket_factory.cc',
794 'test/chromedriver/net/sync_websocket_factory.h', 792 'test/chromedriver/net/sync_websocket_factory.h',
795 'test/chromedriver/net/sync_websocket_impl.cc', 793 'test/chromedriver/net/sync_websocket_impl.cc',
796 'test/chromedriver/net/sync_websocket_impl.h', 794 'test/chromedriver/net/sync_websocket_impl.h',
797 'test/chromedriver/net/url_request_context_getter.cc', 795 'test/chromedriver/net/url_request_context_getter.cc',
798 'test/chromedriver/net/url_request_context_getter.h', 796 'test/chromedriver/net/url_request_context_getter.h',
799 'test/chromedriver/net/websocket.cc', 797 'test/chromedriver/net/websocket.cc',
800 'test/chromedriver/net/websocket.h', 798 'test/chromedriver/net/websocket.h',
801 'test/chromedriver/session.cc',
802 'test/chromedriver/session.h',
803 'test/chromedriver/session_commands.cc',
804 'test/chromedriver/session_commands.h',
805 'test/chromedriver/session_map.h',
806 'test/chromedriver/status.cc',
807 'test/chromedriver/status.h',
808 'test/chromedriver/synchronized_map.h',
809 'test/chromedriver/ui_events.cc',
810 'test/chromedriver/ui_events.h',
811 'test/chromedriver/util.cc',
812 'test/chromedriver/util.h',
813 'test/chromedriver/version.cc',
814 'test/chromedriver/version.h',
815 'test/chromedriver/web_view_delegate.h',
816 'test/chromedriver/web_view.h',
817 'test/chromedriver/web_view_impl.cc',
818 'test/chromedriver/web_view_impl.h',
819 'test/chromedriver/window_commands.cc',
820 'test/chromedriver/window_commands.h',
821 'test/chromedriver/zip.cc',
822 'test/chromedriver/zip.h',
823 'test/chromedriver/zip_internal.cc',
824 'test/chromedriver/zip_internal.h',
825 'test/chromedriver/zip_reader.cc',
826 'test/chromedriver/zip_reader.h',
827 ], 799 ],
828 'actions': [ 800 'actions': [
829 { 801 {
830 'action_name': 'embed_js_in_cpp', 802 'action_name': 'embed_js_in_cpp',
831 'inputs': [ 803 'inputs': [
832 'test/chromedriver/cpp_source.py', 804 'test/chromedriver/cpp_source.py',
833 'test/chromedriver/embed_js_in_cpp.py', 805 'test/chromedriver/embed_js_in_cpp.py',
834 'test/chromedriver/js/add_cookie.js', 806 'test/chromedriver/js/add_cookie.js',
835 'test/chromedriver/js/call_function.js', 807 'test/chromedriver/js/call_function.js',
836 'test/chromedriver/js/execute_async_script.js', 808 'test/chromedriver/js/execute_async_script.js',
837 'test/chromedriver/js/focus.js', 809 'test/chromedriver/js/focus.js',
838 'test/chromedriver/js/get_element_region.js', 810 'test/chromedriver/js/get_element_region.js',
839 'test/chromedriver/js/is_option_element_toggleable.js', 811 'test/chromedriver/js/is_option_element_toggleable.js',
840 ], 812 ],
841 'outputs': [ 813 'outputs': [
842 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver/js.cc', 814 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/chrome/js.cc',
843 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver/js.h', 815 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/chrome/js.h',
844 ], 816 ],
845 'action': [ 'python', 817 'action': [ 'python',
846 'test/chromedriver/embed_js_in_cpp.py', 818 'test/chromedriver/embed_js_in_cpp.py',
847 '--directory', 819 '--directory',
848 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver', 820 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/chrom e',
849 'test/chromedriver/js/add_cookie.js', 821 'test/chromedriver/js/add_cookie.js',
850 'test/chromedriver/js/call_function.js', 822 'test/chromedriver/js/call_function.js',
851 'test/chromedriver/js/execute_async_script.js', 823 'test/chromedriver/js/execute_async_script.js',
852 'test/chromedriver/js/focus.js', 824 'test/chromedriver/js/focus.js',
853 'test/chromedriver/js/get_element_region.js', 825 'test/chromedriver/js/get_element_region.js',
854 'test/chromedriver/js/is_option_element_toggleable.js', 826 'test/chromedriver/js/is_option_element_toggleable.js',
855 ], 827 ],
856 'message': 'Generating sources for embedding js in chromedriver', 828 'message': 'Generating sources for embedding js in chromedriver',
857 }, 829 },
858 { 830 {
859 'action_name': 'embed_user_data_dir_in_cpp', 831 'action_name': 'embed_user_data_dir_in_cpp',
860 'inputs': [ 832 'inputs': [
861 'test/chromedriver/cpp_source.py', 833 'test/chromedriver/cpp_source.py',
862 'test/chromedriver/embed_user_data_dir_in_cpp.py', 834 'test/chromedriver/embed_user_data_dir_in_cpp.py',
863 'test/chromedriver/preferences.txt', 835 'test/chromedriver/chrome/preferences.txt',
864 'test/chromedriver/local_state.txt', 836 'test/chromedriver/chrome/local_state.txt',
865 ], 837 ],
866 'outputs': [ 838 'outputs': [
867 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver/user_data_dir.cc', 839 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/chrome/user_dat a_dir.cc',
868 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver/user_data_dir.h', 840 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/chrome/user_dat a_dir.h',
869 ], 841 ],
870 'action': [ 'python', 842 'action': [ 'python',
871 'test/chromedriver/embed_user_data_dir_in_cpp.py', 843 'test/chromedriver/embed_user_data_dir_in_cpp.py',
872 '--directory', 844 '--directory',
873 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver', 845 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/chrom e',
874 'test/chromedriver/preferences.txt', 846 'test/chromedriver/chrome/preferences.txt',
875 'test/chromedriver/local_state.txt', 847 'test/chromedriver/chrome/local_state.txt',
876 ], 848 ],
877 'message': 'Generating sources for embedding user data dir in chromedr iver', 849 'message': 'Generating sources for embedding user data dir in chromedr iver',
878 }, 850 },
879 ], 851 ],
880 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 852 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
881 'msvs_disabled_warnings': [ 4267, ], 853 'msvs_disabled_warnings': [ 4267, ],
882 }, 854 },
855 {
856 'target_name': 'chromedriver2_lib',
857 'type': 'static_library',
858 'dependencies': [
859 'chrome_devtools_lib',
860 '../base/base.gyp:base',
861 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
862 '../net/net.gyp:net',
863 '../ui/ui.gyp:ui',
864 ],
865 'include_dirs': [
866 '..',
867 ],
868 'sources': [
869 '../third_party/webdriver/atoms.cc',
870 '../third_party/webdriver/atoms.h',
871 'test/chromedriver/basic_types.cc',
872 'test/chromedriver/basic_types.h',
873 'test/chromedriver/chromedriver.cc',
874 'test/chromedriver/chromedriver.h',
875 'test/chromedriver/command.h',
876 'test/chromedriver/command_executor.h',
877 'test/chromedriver/command_executor_impl.cc',
878 'test/chromedriver/command_executor_impl.h',
879 'test/chromedriver/command_names.cc',
880 'test/chromedriver/command_names.h',
881 'test/chromedriver/commands.cc',
882 'test/chromedriver/commands.h',
883 'test/chromedriver/element_commands.cc',
884 'test/chromedriver/element_commands.h',
885 'test/chromedriver/element_util.cc',
886 'test/chromedriver/element_util.h',
887 'test/chromedriver/key_converter.cc',
888 'test/chromedriver/key_converter.h',
889 'test/chromedriver/keycode_text_conversion.h',
890 'test/chromedriver/keycode_text_conversion_mac.mm',
891 'test/chromedriver/keycode_text_conversion_win.cc',
892 'test/chromedriver/keycode_text_conversion_x.cc',
893 'test/chromedriver/session.cc',
894 'test/chromedriver/session.h',
895 'test/chromedriver/session_commands.cc',
896 'test/chromedriver/session_commands.h',
897 'test/chromedriver/session_map.h',
898 'test/chromedriver/synchronized_map.h',
899 'test/chromedriver/util.cc',
900 'test/chromedriver/util.h',
901 'test/chromedriver/window_commands.cc',
902 'test/chromedriver/window_commands.h',
903 ],
904 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
905 'msvs_disabled_warnings': [ 4267, ],
906 },
883 # This is the new ChromeDriver based on DevTools. 907 # This is the new ChromeDriver based on DevTools.
884 { 908 {
885 'target_name': 'chromedriver2', 909 'target_name': 'chromedriver2',
886 'type': 'loadable_module', 910 'type': 'loadable_module',
887 'dependencies': [ 911 'dependencies': [
888 'chromedriver2_lib', 912 'chromedriver2_lib',
889 '../base/base.gyp:base', 913 '../base/base.gyp:base',
890 'test/chromedriver/third_party/jni/jni.gyp:jni', 914 'test/chromedriver/third_party/jni/jni.gyp:jni',
891 ], 915 ],
892 'include_dirs': [ 916 'include_dirs': [
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
940 'type': 'executable', 964 'type': 'executable',
941 'dependencies': [ 965 'dependencies': [
942 'chromedriver2_lib', 966 'chromedriver2_lib',
943 'chromedriver2_server_lib', 967 'chromedriver2_server_lib',
944 '../base/base.gyp:base', 968 '../base/base.gyp:base',
945 '../base/base.gyp:run_all_unittests', 969 '../base/base.gyp:run_all_unittests',
946 '../testing/gtest.gyp:gtest', 970 '../testing/gtest.gyp:gtest',
947 '../ui/ui.gyp:ui', 971 '../ui/ui.gyp:ui',
948 ], 972 ],
949 'sources': [ 973 'sources': [
950 'test/chromedriver/chrome_desktop_impl_unittest.cc', 974 'test/chromedriver/chrome/chrome_desktop_impl_unittest.cc',
951 'test/chromedriver/chrome_finder_unittest.cc', 975 'test/chromedriver/chrome/chrome_finder_unittest.cc',
952 'test/chromedriver/chrome_impl_unittest.cc', 976 'test/chromedriver/chrome/chrome_impl_unittest.cc',
977 'test/chromedriver/chrome/devtools_client_impl_unittest.cc',
978 'test/chromedriver/chrome/dom_tracker_unittest.cc',
979 'test/chromedriver/chrome/frame_tracker_unittest.cc',
980 'test/chromedriver/chrome/javascript_dialog_manager_unittest.cc',
981 'test/chromedriver/chrome/navigation_tracker_unittest.cc',
982 'test/chromedriver/chrome/status_unittest.cc',
983 'test/chromedriver/chrome/stub_chrome.cc',
984 'test/chromedriver/chrome/stub_chrome.h',
985 'test/chromedriver/chrome/stub_devtools_client.cc',
986 'test/chromedriver/chrome/stub_devtools_client.h',
987 'test/chromedriver/chrome/stub_web_view.cc',
988 'test/chromedriver/chrome/stub_web_view.h',
989 'test/chromedriver/chrome/web_view_impl_unittest.cc',
953 'test/chromedriver/chromedriver_unittest.cc', 990 'test/chromedriver/chromedriver_unittest.cc',
954 'test/chromedriver/command_executor_impl_unittest.cc', 991 'test/chromedriver/command_executor_impl_unittest.cc',
955 'test/chromedriver/commands_unittest.cc', 992 'test/chromedriver/commands_unittest.cc',
956 'test/chromedriver/devtools_client_impl_unittest.cc',
957 'test/chromedriver/dom_tracker_unittest.cc',
958 'test/chromedriver/fake_session_accessor.cc', 993 'test/chromedriver/fake_session_accessor.cc',
959 'test/chromedriver/fake_session_accessor.h', 994 'test/chromedriver/fake_session_accessor.h',
960 'test/chromedriver/frame_tracker_unittest.cc',
961 'test/chromedriver/javascript_dialog_manager_unittest.cc',
962 'test/chromedriver/navigation_tracker_unittest.cc',
963 'test/chromedriver/server/http_handler_unittest.cc', 995 'test/chromedriver/server/http_handler_unittest.cc',
964 'test/chromedriver/server/http_response_unittest.cc', 996 'test/chromedriver/server/http_response_unittest.cc',
965 'test/chromedriver/session_commands_unittest.cc', 997 'test/chromedriver/session_commands_unittest.cc',
966 'test/chromedriver/session_unittest.cc', 998 'test/chromedriver/session_unittest.cc',
967 'test/chromedriver/status_unittest.cc',
968 'test/chromedriver/stub_chrome.cc',
969 'test/chromedriver/stub_chrome.h',
970 'test/chromedriver/stub_devtools_client.cc',
971 'test/chromedriver/stub_devtools_client.h',
972 'test/chromedriver/stub_web_view.cc',
973 'test/chromedriver/stub_web_view.h',
974 'test/chromedriver/synchronized_map_unittest.cc', 999 'test/chromedriver/synchronized_map_unittest.cc',
975 'test/chromedriver/web_view_impl_unittest.cc',
976 ], 1000 ],
977 }, 1001 },
978 # ChromeDriver2 tests that aren't run on the main buildbot. Available 1002 # ChromeDriver2 tests that aren't run on the main buildbot. Available
979 # as an optional test type on trybots. 1003 # as an optional test type on trybots.
980 { 1004 {
981 'target_name': 'chromedriver2_tests', 1005 'target_name': 'chromedriver2_tests',
982 'type': 'executable', 1006 'type': 'executable',
983 'dependencies': [ 1007 'dependencies': [
984 'chromedriver2_lib', 1008 'chromedriver2_lib',
985 '../base/base.gyp:base', 1009 '../base/base.gyp:base',
(...skipping 2216 matching lines...) Expand 10 before | Expand all | Expand 10 after
3202 # more details. 3226 # more details.
3203 'DebugInformationFormat': '3', 3227 'DebugInformationFormat': '3',
3204 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb', 3228 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb',
3205 }, 3229 },
3206 }, 3230 },
3207 }, 3231 },
3208 ], 3232 ],
3209 }], 3233 }],
3210 ], # 'conditions' 3234 ], # 'conditions'
3211 } 3235 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/chromedriver/README.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698