OLD | NEW |
(Empty) | |
| 1 # (A sample top level block comment) |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. |
| 5 |
| 6 if (is_win) { |
| 7 # This is some special stuff for Windows |
| 8 sources = ["win.cc"] } else if (is_linux) { |
| 9 |
| 10 # This is a block comment inside the linux block, but not attached. |
| 11 |
| 12 sources = ["linux.cc"] |
| 13 } else { |
| 14 # A comment with trailing spaces |
| 15 sources = ["wha.cc"] } |
| 16 |
OLD | NEW |