aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/find.py
Commit message (Collapse)AuthorAge
* Add executable bit and shebang to python filesGravatar anmittal2016-08-18
| | | | | | | BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2253373002 Review-Url: https://codereview.chromium.org/2253373002
* GN: get echo-headers sources via exec_scriptGravatar mtklein2016-08-02
| | | | | | | | | | | | | | | | | exec_script runs every time gn does, which is explicitly on every one of our bot runs. That should be enough to obviate the .git/logs/HEAD hack. Easiest way to do this was to swap around find.py's argument order to allow multiple search directories. This is the root of all the .gyp changes. This moves the blacklist into BUILD.gn, which I think is nice. It expands it a little as we're now searching recursively, into include/gpu/vk which we can't include safely without the Vulkan SDK. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2205903004 Review-Url: https://codereview.chromium.org/2205903004
* Sort build files for consistent link order.Gravatar bungeman2015-05-20
| | | | | | | | | | | Prior to the introduction of find.py, GMs were liked in the order they were listed in the gypi file, which was generally alphabetically. This made it fairly easy to predict where slides would show up in SampleApp and the order was consistent. This simply sorts the list of files in find.py to restore the expectation that files should be listed in the build in alphabetical order. Review URL: https://codereview.chromium.org/1144973003
* Experiment with find as a road to Gyp sanity.Gravatar mtklein2015-05-16
BUG=skia: Review URL: https://codereview.chromium.org/1123173005