summaryrefslogtreecommitdiffstats
path: root/build/nocompile.gni
Commit message (Collapse)AuthorAgeFilesLines
* Fix base_nocompile_tests dependencytzik2016-02-161-1/+4
| | | | | | | | | | | | nocompile_tests wasn't aware header file dependencies that included by a .nc file. That makes a test failure sticky. This CL makes nocompile_driver.py to emit a depfile to let ninja know the implicit dependencies. Review URL: https://codereview.chromium.org/1698763002 Cr-Commit-Position: refs/heads/master@{#375504}
* Add no-compile test support to GN buildtzik2015-12-171-0/+89
No-compile tests have been disabled for a while on GYP build, and GN didn't support it. This CL converts //build/nocompile.gypi to //build/nocompile.gni to support no-compile test, and splits out test cases from base_unittests to base_nocompile_tests on GN build. This doesn't enable the test by default. To opt-in to it, set enable_nocompile_tests to true in GN args. BUG=568478 Review URL: https://codereview.chromium.org/1526933002 Cr-Commit-Position: refs/heads/master@{#365757}