Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2014 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 defines the content common gypi values once so that the result can | |
| 6 # be shared between the public and private GN builds without having to re-parse | |
| 7 # the .gypi. | |
|
jam
2014/05/20 06:41:52
with the caveat that i'm not familiar with gn, I s
brettw
2014/05/20 17:20:23
Yes, I made the comment more explicit about this.
| |
| 8 content_common_gypi_values = exec_script( | |
| 9 "//build/gypi_to_gn.py", | |
| 10 [ rebase_path("../content_common.gypi") ], | |
| 11 "scope", | |
| 12 [ "../content_common.gypi" ]) | |
| 13 | |
| OLD | NEW |