| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
Long live Chromium!
Review URL: https://codereview.chromium.org/1210233004
Cr-Commit-Position: refs/heads/master@{#337071}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Instead of relying on lots of magic to happen via our home-rolled, kinda
maintained inputs.py[1], instead we can use GYP's 'all_dependent_settings'.
This buys us a topologically sorted list of dependent .js files for free.
So now, instead of:
'variables': {
'depends': ['compiled_resources.gyp:some_target']
'externs': ['../../third_party/closure_compiler/externs/some_externs.js']
},
We can change to:
'dependencies': [
'some_target',
'<(EXTERNS_GYP):some_externs',
],
This has more robust path logic and variable expansion will actually work
(so we can use <(DEPTH) or other variables in paths again).
Depends on: https://codereview.chromium.org/1152583011/
BUG=393873
R=twellington@chromium.org
[1] third_party/closure_compiler/build/inputs.py
Review URL: https://codereview.chromium.org/1180673011
Cr-Commit-Position: refs/heads/master@{#335823}
|
|
|
|
|
|
|
|
|
| |
R=tbreisacher@chromium.org
BUG=393873
Review URL: https://codereview.chromium.org/945093002
Cr-Commit-Position: refs/heads/master@{#317443}
|
|
|
|
|
|
|
|
|
|
| |
R=dbeam@chromium.org
BUG=393873
TEST=GYP_GENERATORS=ninja gyp --depth . chrome/browser/resources/options/compiled_resources.gyp && ninja -C out/Default
Review URL: https://codereview.chromium.org/604373006
Cr-Commit-Position: refs/heads/master@{#297882}
|
|
|
|
|
|
|
|
|
|
| |
R=arv@chromium.org
BUG=393873
TEST=GYP_GENERATORS=ninja gyp --depth . third_party/jstemplate/compiled_resources.gyp && ninja -C out/Default
Review URL: https://codereview.chromium.org/603693002
Cr-Commit-Position: refs/heads/master@{#297018}
|
|
|
|
|
|
|
|
| |
BUG=None
Review URL: https://chromiumcodereview.appspot.com/16658007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205890 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
from ui\.
This is a cleanup after r177425 which I didn't want to do in that already large cl.
BUG=169170
Review URL: https://codereview.chromium.org/11971042
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177551 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
to third_party.
All third party libraries should be in third_party.
The presubmit check complains about jstemplate's README.chromium
being nonstandard; I will fix that in a follow-up.
The interesting changes are to the .grd file and the .py file.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6901102
TBR=thakis@chromium.org
Review URL: http://codereview.chromium.org/6905149
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83632 0039d316-1c4b-4281-b951-d872f2087c98
|
|
All third party libraries should be in third_party.
The presubmit check complains about jstemplate's README.chromium
being nonstandard; I will fix that in a follow-up.
The interesting changes are to the .grd file and the .py file.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6901102
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83452 0039d316-1c4b-4281-b951-d872f2087c98
|