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

Side by Side Diff: chrome/common/extensions/api/schemas.gni

Issue 754223003: gn format //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update for multiline output Created 6 years 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
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/installer/util/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 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 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 7
8 assert(enable_extensions) 8 assert(enable_extensions)
9 9
10 gypi_values = exec_script( 10 gypi_values = exec_script("//build/gypi_to_gn.py",
11 "//build/gypi_to_gn.py", 11 [ rebase_path("schemas.gypi") ],
12 [ rebase_path("schemas.gypi") ], 12 "scope",
13 "scope", 13 [ "schemas.gypi" ])
14 [ "schemas.gypi" ])
15 14
16 # Common sources that are both bundled and compiled. 15 # Common sources that are both bundled and compiled.
17 sources = gypi_values.main_schema_files 16 sources = gypi_values.main_schema_files
18 if (is_chromeos) { 17 if (is_chromeos) {
19 sources += gypi_values.chromeos_schema_files 18 sources += gypi_values.chromeos_schema_files
20 if (!use_athena) { 19 if (!use_athena) {
21 sources += gypi_values.chromeos_non_athena_schema_files 20 sources += gypi_values.chromeos_non_athena_schema_files
22 } 21 }
23 } 22 }
24 if (enable_webrtc) { 23 if (enable_webrtc) {
25 sources += gypi_values.webrtc_schema_files 24 sources += gypi_values.webrtc_schema_files
26 } 25 }
27 26
28
29 uncompiled_sources = gypi_values.main_non_compiled_schema_files 27 uncompiled_sources = gypi_values.main_non_compiled_schema_files
30 28
31 root_namespace = "extensions::api::%(namespace)s" 29 root_namespace = "extensions::api::%(namespace)s"
32 schema_include_rules = 30 schema_include_rules =
33 "extensions/common/api:extensions::core_api::%(namespace)s" 31 "extensions/common/api:extensions::core_api::%(namespace)s"
34 schema_dependencies = [ "//extensions/common/api" ] 32 schema_dependencies = [ "//extensions/common/api" ]
OLDNEW
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/installer/util/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698