summaryrefslogtreecommitdiffstats
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* Ignore gyp-mac-tool generated by Mac make buildkushi.p@gmail.com2011-08-091-0/+1
| | | | | | | | | | BUG=None TEST=None Review URL: http://codereview.chromium.org/7599023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96036 0039d316-1c4b-4281-b951-d872f2087c98
* Use content from trunk/deps for frame rate tests.jrt@chromium.org2011-07-261-0/+1
| | | | | | | | | | | | | After r93671, all frame rate test content is located in trunk/deps/frame_rate/content. Now it maps to src/chrome/test/data/perf/frame_rate/content and all references are updated accordingly. See: http://codereview.chromium.org/7461031/ Review URL: http://codereview.chromium.org/7467030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94022 0039d316-1c4b-4281-b951-d872f2087c98
* Ignore sfntly.avi@chromium.org2011-07-251-0/+1
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/7484067 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93880 0039d316-1c4b-4281-b951-d872f2087c98
* FTP: use an unmodified and more recent version of pyftpdlib fetched via DEPSphajdan.jr@chromium.org2011-07-221-0/+1
| | | | | | | | | | | This will make it much easier to update pyftpdlib and might help with FTP test flakiness. BUG=none Review URL: http://codereview.chromium.org/7492015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93702 0039d316-1c4b-4281-b951-d872f2087c98
* Moved WebGL repository to third_party.jrt@chromium.org2011-07-211-1/+1
| | | | | | | | | | | | | According the the 3rd-party Chromium policy, all external libraries should be in a third_party directory. All WebGL repository references now point to src/third_party/webgl_conformance. Source: http://www.chromium.org/developers/adding-3rd-party-libraries Review URL: http://codereview.chromium.org/7473003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93339 0039d316-1c4b-4281-b951-d872f2087c98
* Added WebGL conformance tests to GPU tests.jrt@chromium.org2011-07-121-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Once we pass all conformance tests (not there yet), we can track which change broke conformity. Mirrored the WebGL conformance tests in /trunk/deps/third_party/webgl (r91578). Imported the files to /trunk/src/chrome/test/data/gpu/webgl_conformance, using DEPS. Also, added the new directory to .gitignore. Each conformance test runs as a separate gtest under WebGLConformanceTests and OSMesa is always disabled. Currently, there are 151 tests and the suite requires approximately 11 minutes. The test declarations are located in a separate files because they are produced by a script (which I will include in a later CL). WebGL tests: http://www.khronos.org/webgl/wiki/Testing/Conformance Related issue: http://code.google.com/p/chromium/issues/detail?id=88125 TEST=gpu_tests --gtest_filter=WebGLConformanceTests.* Review URL: http://codereview.chromium.org/7312015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92155 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 89626 - Support automatic javascript test registry in gtest when ↵scr@chromium.org2011-06-191-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | creating WebUI tests. The goal was to support something as simple as the following, where the tests in the javascript files would be 1st class GTESTs, supporting FLAKY_, DISABLED_, etc, and registered at linker_initialization time. WEB_UI_BROWSER_TEST_JS(WebUIBrowserTest, TestJSPass, FILE_PATH_LITERAL("sample_passing.js")) { ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIDownloadsURL)); } This solution ended up being fairly fragile, and I ended up with a script to parse javascript (with the help of v8_shell) and generate an includable ...-inl.h file with the following for every test in the .js file specified in the |rules| section of tools/js2webui.py IN_PROC_BROWSER_TEST_F(WebUIBrowserTestPass, testHelper) { AddLibrary(FilePath(FILE_PATH_LITERAL("sample_pass.js"))); ASSERT_TRUE(RunJavascriptTest("testHelper")); } http://www.chromium.org/Home/domui-testing BUG=82437 R=estade@chromium.org,jhawkins@chromium.org TEST=browser_tests --gtest_filter=WebUIBrowserTest* Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=89453 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=89605 Review URL: http://codereview.chromium.org/7087014 TBR=scr@chromium.org Review URL: http://codereview.chromium.org/7204022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89627 0039d316-1c4b-4281-b951-d872f2087c98
* Support automatic javascript test registry in gtest when creating WebUI tests.scr@chromium.org2011-06-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The goal was to support something as simple as the following, where the tests in the javascript files would be 1st class GTESTs, supporting FLAKY_, DISABLED_, etc, and registered at linker_initialization time. WEB_UI_BROWSER_TEST_JS(WebUIBrowserTest, TestJSPass, FILE_PATH_LITERAL("sample_passing.js")) { ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIDownloadsURL)); } This solution ended up being fairly fragile, and I ended up with a script to parse javascript (with the help of v8_shell) and generate an includable ...-inl.h file with the following for every test in the .js file specified in the |rules| section of tools/js2webui.py IN_PROC_BROWSER_TEST_F(WebUIBrowserTestPass, testHelper) { AddLibrary(FilePath(FILE_PATH_LITERAL("sample_pass.js"))); ASSERT_TRUE(RunJavascriptTest("testHelper")); } http://www.chromium.org/Home/domui-testing BUG=82437 R=estade@chromium.org,jhawkins@chromium.org TEST=browser_tests --gtest_filter=WebUIBrowserTest* Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=89453 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=89605 Review URL: http://codereview.chromium.org/7087014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89626 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 89605 - Support automatic javascript test registry in gtest when ↵scr@chromium.org2011-06-181-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | creating WebUI tests. The goal was to support something as simple as the following, where the tests in the javascript files would be 1st class GTESTs, supporting FLAKY_, DISABLED_, etc, and registered at linker_initialization time. WEB_UI_BROWSER_TEST_JS(WebUIBrowserTest, TestJSPass, FILE_PATH_LITERAL("sample_passing.js")) { ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIDownloadsURL)); } WEB_UI_BROWSER_TEST_JS_FALSE(WebUIBrowserTest, TestJSFail, FILE_PATH_LITERAL("sample_failing.js")) { ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIDownloadsURL)); } http://www.chromium.org/Home/domui-testing In order to support linker init time, I had to modify path_service to support Unregistration, and chrome_paths to allow multiple invocations. BUG=82437 R=estade@chromium.org,jhawkins@chromium.org TEST=browser_tests --gtest_filter=WebUIBrowserTest* Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=89453 Review URL: http://codereview.chromium.org/7087014 TBR=scr@chromium.org Review URL: http://codereview.chromium.org/7189052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89607 0039d316-1c4b-4281-b951-d872f2087c98
* Support automatic javascript test registry in gtest when creating WebUI tests.scr@chromium.org2011-06-181-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The goal was to support something as simple as the following, where the tests in the javascript files would be 1st class GTESTs, supporting FLAKY_, DISABLED_, etc, and registered at linker_initialization time. WEB_UI_BROWSER_TEST_JS(WebUIBrowserTest, TestJSPass, FILE_PATH_LITERAL("sample_passing.js")) { ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIDownloadsURL)); } WEB_UI_BROWSER_TEST_JS_FALSE(WebUIBrowserTest, TestJSFail, FILE_PATH_LITERAL("sample_failing.js")) { ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIDownloadsURL)); } http://www.chromium.org/Home/domui-testing In order to support linker init time, I had to modify path_service to support Unregistration, and chrome_paths to allow multiple invocations. BUG=82437 R=estade@chromium.org,jhawkins@chromium.org TEST=browser_tests --gtest_filter=WebUIBrowserTest* Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=89453 Review URL: http://codereview.chromium.org/7087014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89605 0039d316-1c4b-4281-b951-d872f2087c98
* Add third_party/webrtc to .gitignoreakalin@chromium.org2011-06-171-0/+1
| | | | | | | | | BUG= TEST= Review URL: http://codereview.chromium.org/7200018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89572 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 89453 - Support automatic javascript test registry in gtest when ↵joth@chromium.org2011-06-171-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | creating WebUI tests. - gypv8sh.py is breaking on Mac http://build.chromium.org/p/chromium/builders/Mac10.5%20Tests%20%281%29/builds/8563/steps/update/logs/stdio File "/b/build/slave/Mac10_5_Tests__1_/build/src/tools/gyp/pylib/gyp/input.py", line 1017, in ProcessVariablesAndConditionsInList expanded = ExpandVariables(item, is_late, variables, build_file) File "/b/build/slave/Mac10_5_Tests__1_/build/src/tools/gyp/pylib/gyp/input.py", line 684, in ExpandVariables (contents, p.returncode)) Exception: Call to 'python ../tools/gypv8sh.py -i' returned exit status 1. while loading dependencies of src/chrome/browser/sync/tools/sync_tools.gyp while loading dependencies of src/build/all.gyp while trying to load src/build/all.gyp Error: /System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python src/build/gyp_chromium in /b/build/slave/Mac10_5_Tests__1_/build returned 1 The goal was to support something as simple as the following, where the tests in the javascript files would be 1st class GTESTs, supporting FLAKY_, DISABLED_, etc, and registered at linker_initialization time. WEB_UI_BROWSER_TEST_JS(WebUIBrowserTest, TestJSPass, FILE_PATH_LITERAL("sample_passing.js")) { ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIDownloadsURL)); } WEB_UI_BROWSER_TEST_JS_FALSE(WebUIBrowserTest, TestJSFail, FILE_PATH_LITERAL("sample_failing.js")) { ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIDownloadsURL)); } http://www.chromium.org/Home/domui-testing In order to support linker init time, I had to modify path_service to support Unregistration, and chrome_paths to allow multiple invocations. BUG=82437 R=estade@chromium.org,jhawkins@chromium.org TEST=browser_tests --gtest_filter=WebUIBrowserTest* Review URL: http://codereview.chromium.org/7087014 TBR=scr@chromium.org Review URL: http://codereview.chromium.org/7193030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89460 0039d316-1c4b-4281-b951-d872f2087c98
* Support automatic javascript test registry in gtest when creating WebUI tests.scr@chromium.org2011-06-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The goal was to support something as simple as the following, where the tests in the javascript files would be 1st class GTESTs, supporting FLAKY_, DISABLED_, etc, and registered at linker_initialization time. WEB_UI_BROWSER_TEST_JS(WebUIBrowserTest, TestJSPass, FILE_PATH_LITERAL("sample_passing.js")) { ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIDownloadsURL)); } WEB_UI_BROWSER_TEST_JS_FALSE(WebUIBrowserTest, TestJSFail, FILE_PATH_LITERAL("sample_failing.js")) { ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIDownloadsURL)); } http://www.chromium.org/Home/domui-testing In order to support linker init time, I had to modify path_service to support Unregistration, and chrome_paths to allow multiple invocations. BUG=82437 R=estade@chromium.org,jhawkins@chromium.org TEST=browser_tests --gtest_filter=WebUIBrowserTest* Review URL: http://codereview.chromium.org/7087014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89453 0039d316-1c4b-4281-b951-d872f2087c98
* Add third_party/mkl to .gitignorescottbyer@chromium.org2011-04-201-0/+1
| | | | | | Review URL: http://codereview.chromium.org/6882086 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@82313 0039d316-1c4b-4281-b951-d872f2087c98
* Manual Code Reviewthomasvl@chromium.org2011-04-131-0/+1
| | | | | | | | | | | | Add bidichecker to the ignores R=maruel BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81406 0039d316-1c4b-4281-b951-d872f2087c98
* [Sync] Rename google-cache-invalidation-api directory back to 'files'akalin@chromium.org2011-04-081-1/+0
| | | | | | | | | | | | | It was renamed to files2 to avoid conflicts with existing files. Now that it's been on the tree for a while as files2, it's safe to rename it back. BUG= TEST= Review URL: http://codereview.chromium.org/6810035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80951 0039d316-1c4b-4281-b951-d872f2087c98
* Add third_party/libsrtp to .gitignore.bauerb@chromium.org2011-04-081-0/+1
| | | | | | | | | BUG=none TEST=Less clutter in git Review URL: http://codereview.chromium.org/3452023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80936 0039d316-1c4b-4281-b951-d872f2087c98
* Add most extensions generated by VS2010 to .gitignore.maruel@chromium.org2011-04-041-0/+6
| | | | | | | | | | | | | | VS2010 generates .xml files, we can't add that to .gitignore. Add flash symbols too. BUG= TEST= Review URL: http://codereview.chromium.org/6793022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80352 0039d316-1c4b-4281-b951-d872f2087c98
* Add use of the Psyco JIT compiler to GYP on Windows. On my z600 with 12 GB ↵joi@chromium.org2011-03-301-0/+1
| | | | | | | | | | | | | of RAM, this shortens the time taken for a warm run of build/chromium_gyp from approximately 90 seconds down to approximately 70 seconds. On the other hand, it increases maximum memory usage for the GYP process from ~132 MB to ~158 MB on the same test system. At the moment it is unknown whether using Psyco on Mac and Linux would pay off; follow-up changes may address this if it is. BUG=none TEST=things build correctly Review URL: http://codereview.chromium.org/6778017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79871 0039d316-1c4b-4281-b951-d872f2087c98
* Update .gitignore to include /third_party/scons-2.0.1scherkus@chromium.org2011-03-281-1/+1
| | | | | | | | | | BUG=none TEST=none TBR=bradnelson Review URL: http://codereview.chromium.org/6755012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79591 0039d316-1c4b-4281-b951-d872f2087c98
* Add net/testserver.log to .gitignorejoi@chromium.org2011-03-241-0/+1
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6736013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79342 0039d316-1c4b-4281-b951-d872f2087c98
* Add third_party/{leveldb,snappy/src} to .gitignore following r79058rsleevi@chromium.org2011-03-231-0/+2
| | | | | | | | | BUG=none TEST='git status' reports nothing on a clean checkout Review URL: http://codereview.chromium.org/6722019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79096 0039d316-1c4b-4281-b951-d872f2087c98
* clang: Add llvm directories to gitignore.tfarina@chromium.org2011-03-111-0/+2
| | | | | | | | | BUG=None TEST=run 'git status', see that they are not there. Review URL: http://codereview.chromium.org/6682002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77818 0039d316-1c4b-4281-b951-d872f2087c98
* Add third_party/{pylib,scons} to .gitignore.rsesek@chromium.org2011-02-251-0/+2
| | | | | | | | | BUG=none TEST=|git st| reports nothing on a clean checkout. Review URL: http://codereview.chromium.org/6599005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76054 0039d316-1c4b-4281-b951-d872f2087c98
* Add net.sln output folders to .gitignore.joi@chromium.org2011-02-181-0/+2
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6538060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75439 0039d316-1c4b-4281-b951-d872f2087c98
* Add ninja files to .gitignoreakalin@chromium.org2011-02-091-0/+2
| | | | | | Review URL: http://codereview.chromium.org/6443001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74223 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the broken bots by specifying the googlecode site explicitly. BUG=none ↵kkania@chromium.org2011-01-291-0/+1
| | | | | | | | TEST=none TBR=nirnimesh git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73068 0039d316-1c4b-4281-b951-d872f2087c98
* Adding /testing/gmock to .gitignore due to r72866.scherkus@chromium.org2011-01-291-0/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73050 0039d316-1c4b-4281-b951-d872f2087c98
* gitignore: Add ceee/internal to .gitignore file.derat@chromium.org2011-01-261-0/+1
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6378011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72582 0039d316-1c4b-4281-b951-d872f2087c98
* add third_party/drmemory to .gitignore and remove valgrind.tmp since obsoletebruening@google.com2011-01-251-1/+1
| | | | | | Review URL: http://codereview.chromium.org/6283013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72540 0039d316-1c4b-4281-b951-d872f2087c98
* Add the newly included FLAC third party library to the DEPS file and ignoresatish@chromium.org2011-01-171-0/+1
| | | | | | | | | | | | | | list. I have also set the svn:ignore property for the 'flac' subdir under third_party directory, though I guess it can't be seen in the review. BUG=none TEST=none Review URL: http://codereview.chromium.org/6205006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71593 0039d316-1c4b-4281-b951-d872f2087c98
* .gitignore: added SlickEdit project wildcardsscheib@chromium.org2011-01-071-0/+4
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/5748003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70803 0039d316-1c4b-4281-b951-d872f2087c98
* Add Thumbs.db to gitingore.tfarina@chromium.org2010-12-291-1/+2
| | | | | | | | | BUG=None TEST=run 'git status' and confirm that this files is not showed. Review URL: http://codereview.chromium.org/6066006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70250 0039d316-1c4b-4281-b951-d872f2087c98
* Add third_party/yasm/binaries to .gitignore.tfarina@chromium.org2010-12-211-0/+1
| | | | | | | | | | | So 'git status' doesn't report it as untracked. And I stop bothering with this. :) BUG=None TEST=run 'git status', you shouldn't see git complaining about it anymore. Review URL: http://codereview.chromium.org/6092001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69893 0039d316-1c4b-4281-b951-d872f2087c98
* Add third_party/libjpeg_turbo to .gitignore.derat@chromium.org2010-12-161-0/+1
| | | | | | | | | | BUG=none TEST=git status TBR=evan Review URL: http://codereview.chromium.org/5933003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69418 0039d316-1c4b-4281-b951-d872f2087c98
* Tell git to ignore python 2.6, which NaCl includes using DEPS on windows.skerner@chromium.org2010-12-071-0/+1
| | | | | | | | | | | I considered removing the line to ignore python 2.4. I left it in place in case anyone wants to check out an old version. BUG=None TEST=Run git gui on a chrome checkout under windows. No longer see warnings about 7000+ untracked files. Review URL: http://codereview.chromium.org/5519012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68443 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Update .gitignore for build-related files.derat@chromium.org2010-12-061-0/+3
| | | | | | | | | | | | | This makes us ignore out_* (per-board output directories, e.g. out_x86-generic) and c (a symlink created by the Chrome OS ebuild to limit the length of some command lines). BUG=chromium-os:7967 TEST=ran "git status" Review URL: http://codereview.chromium.org/5535005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68366 0039d316-1c4b-4281-b951-d872f2087c98
* Add chrome/test/data/pyauto_private to .gitignoreisherman@chromium.org2010-11-291-0/+1
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/5374005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67582 0039d316-1c4b-4281-b951-d872f2087c98
* Follow up on r65720: adds third_party/openssl to .gitignorebulach@chromium.org2010-11-111-0/+2
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/4694007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65799 0039d316-1c4b-4281-b951-d872f2087c98
* Update .gitignore based on looking at DEPS.evan@chromium.org2010-11-031-10/+3
| | | | | | | | | | | Removing some obsolete entries. DEPS found from using "gclient recurse pwd" and then examining redundant entries manually to verify they weren't used on other platforms. Review URL: http://codereview.chromium.org/4426001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64980 0039d316-1c4b-4281-b951-d872f2087c98
* Update .gitignore: Windows, gdb, ctags.enne@chromium.org2010-10-141-0/+4
| | | | | | | | | | | NO CODE CHANGE. TEST=none BUG=none Review URL: http://codereview.chromium.org/3547004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62588 0039d316-1c4b-4281-b951-d872f2087c98
* Remove third_party/protobuf2agl@chromium.org2010-10-131-1/+0
| | | | | | | | | This can be safely nuked because we're using third_party/protobuf now. BUG=none TEST=compile git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62422 0039d316-1c4b-4281-b951-d872f2087c98
* Add /third_party/safe_browsing/testing to .gitignore.maruel@chromium.org2010-09-291-0/+1
| | | | | | | | | | | | NO CODE CHANGE. TBR=lzheng BUG=none TEST=none Review URL: http://codereview.chromium.org/3580002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60948 0039d316-1c4b-4281-b951-d872f2087c98
* Implement VP8 encoder for chromotinghclam@chromium.org2010-09-281-0/+2
| | | | | | | | | | | Added EncoderVp8 with test for chromoting. TEST=remoting_unittests BUG=50235 Review URL: http://codereview.chromium.org/3005036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60854 0039d316-1c4b-4281-b951-d872f2087c98
* Add third_party/lss to .gitignore.maruel@chromium.org2010-09-251-0/+1
| | | | | | | | | | | | NO CODE CHANGE. TBR=thestig TEST=none BUG=none Review URL: http://codereview.chromium.org/3387020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60588 0039d316-1c4b-4281-b951-d872f2087c98
* Add git ignore rule for libsrtpagl@chromium.org2010-09-231-0/+1
| | | | | | | | | | | TBR=sergeyu TEST=none BUG=none http://codereview.chromium.org/3435023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60287 0039d316-1c4b-4281-b951-d872f2087c98
* gitignore: Add /chrome/browser/extensions/default_extensions/chromeosdpolukhin@chromium.org2010-09-091-0/+1
| | | | | | | | | | BUG=none TEST="git status" TBR=skerner@chromium.org Review URL: http://codereview.chromium.org/3290017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58918 0039d316-1c4b-4281-b951-d872f2087c98
* Pull seccomp-sandbox in via DEPS rather than using an in-tree copy mseaborn@chromium.org2010-09-011-0/+1
| | | | | | | | | | | | | | | | This means changes to the sandbox won't have to be committed twice, to both trees. This is a retry of r57921, which was committed with git-svn and failed to remove the "seccomp" directory. This caused problems when trying to "svn checkout" to the same location, and the change was reverted. This time I will use SVN to commit the change. BUG=none TEST=smoke test of running chromium with --enable-seccomp-sandbox Review URL: http://codereview.chromium.org/3225010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58184 0039d316-1c4b-4281-b951-d872f2087c98
* gitignore: Add tools/histograms/.derat@chromium.org2010-08-201-0/+1
| | | | | | | | | | BUG=none TEST="git status" TBR=evan@chromium.org Review URL: http://codereview.chromium.org/3166026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56885 0039d316-1c4b-4281-b951-d872f2087c98
* .gitignore modified to add Windows build directories:scheib@google.com2010-08-171-7/+11
| | | | | | | | | | | | | | | build/Debug build/Purify build/Release File sorted to fix previous inconsistencies. BUG=none TEST=none Review URL: http://codereview.chromium.org/3165013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56458 0039d316-1c4b-4281-b951-d872f2087c98