Chromium Code Reviews
|
| OLD | NEW |
|---|---|
| (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 an target that will be one or | |
|
Mark Mentovai
2011/03/25 18:22:07
an target -> a target
Mark Mentovai
2011/03/25 18:22:07
will be is wrong, what did you mean?
TVL
2011/03/25 18:33:30
Done.
TVL
2011/03/25 18:33:30
Done.
| |
| 6 # more uses of grit_action.gypi. To use this the following variables need to | |
| 7 # be defined: | |
| 8 # grit_out_dir: string: the output directory path | |
| 9 # | |
|
Mark Mentovai
2011/03/25 18:22:07
Remove this line.
TVL
2011/03/25 18:33:30
Done.
| |
| 10 | |
| 11 # NOTE: This file is optional, not all targets that use grit include it, some | |
| 12 # do their own custom directives instead. | |
| 13 { | |
| 14 'direct_dependent_settings': { | |
|
Mark Mentovai
2011/03/25 17:48:55
Really? I guess this means that you’re expecting a
TVL
2011/03/25 18:15:53
Yea, I'm torn on this one. It was in every place
Mark Mentovai
2011/03/25 18:22:07
TVL wrote:
TVL
2011/03/25 18:33:30
makes sense, i'll take a shot at that next.
| |
| 15 'include_dirs': [ | |
| 16 '<(grit_out_dir)', | |
| 17 ], | |
| 18 }, | |
| 19 'conditions': [ | |
| 20 ['OS=="win"', { | |
| 21 'dependencies': ['<(DEPTH)/build/win/system.gyp:cygwin'], | |
| 22 }], | |
| 23 ], | |
| 24 } | |
| 25 | |
| 26 # Local Variables: | |
| 27 # tab-width:2 | |
| 28 # indent-tabs-mode:nil | |
| 29 # End: | |
| 30 # vim: set expandtab tabstop=2 shiftwidth=2: | |
| OLD | NEW |