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

Side by Side Diff: fuchsia/BUILD.gn

Issue 2692273008: Hacky slashy (Closed)
Patch Set: wip Created 3 years, 10 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
OLDNEW
(Empty)
1 # Copyright 2017 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 assert(!is_component_build, "component build is unsupported on Fuchsia")
6
7 declare_args() {
8 # TODO(scottmg) bug 684096: Remove these. These are to prevent unused override
9 # warnings on Fuchsia from the setting of the default_args in the toplevel
10 # //.gn file. Since Fuchsia doesn't compile V8 at the moment, GN complains
11 # that the overrides are never used.
12 v8_extra_library_files = []
13 v8_experimental_extra_library_files = []
14 v8_enable_gdbjit = false
15 v8_imminent_deprecation_warnings = false
16 }
17
18 # Prevent warnings for unused build args above.
19 assert(v8_extra_library_files != 0)
20 assert(v8_experimental_extra_library_files != 0)
21 assert(!v8_enable_gdbjit)
22 assert(!v8_imminent_deprecation_warnings)
23
24 group("fuchsia") {
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698