OLD | NEW |
---|---|
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/features.gni") | 5 if (is_chromeos) { |
brettw
2015/06/13 01:36:43
Instead of this, I would just put at the top:
as
| |
6 | 6 copy("braille_ime_manifest") { |
7 if (enable_nacl && (is_linux || is_win)) { | |
8 executable("mock_nacl_gdb") { | |
9 sources = [ | 7 sources = [ |
10 "mock_nacl_gdb.cc", | 8 "manifest.json", |
11 ] | 9 ] |
12 deps = [ | 10 outputs = [ |
13 "//base", | 11 "$root_out_dir/resources/chromeos/braille_ime/manifest.json", |
14 ] | 12 ] |
15 } | 13 } |
16 } | 14 } |
OLD | NEW |