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

Side by Side Diff: build/grit_target.gypi

Issue 6705030: Standardize grit invokes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # This file is meant to be included into a target that will have one or more
6 # uses of grit_action.gypi. To use this the following variables need to be
7 # defined:
8 # grit_out_dir: string: the output directory path
9
10 # NOTE: This file is optional, not all targets that use grit include it, some
11 # do their own custom directives instead.
12 {
13 'direct_dependent_settings': {
14 'include_dirs': [
15 '<(grit_out_dir)',
16 ],
17 },
18 'conditions': [
19 ['OS=="win"', {
20 'dependencies': ['<(DEPTH)/build/win/system.gyp:cygwin'],
21 }],
22 ],
23 }
24
25 # Local Variables:
26 # tab-width:2
27 # indent-tabs-mode:nil
28 # End:
29 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698