mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			714 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			714 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Copyright 2016 The Chromium Embedded Framework Authors. Portions copyright
 | |
| # 2014 the Chromium Authors. All rights reserved. Use of this source code is
 | |
| # governed by a BSD-style license that can be found in the LICENSE file.
 | |
| 
 | |
| import("//build/json_schema_api.gni")
 | |
| import("schemas.gni")
 | |
| 
 | |
| json_schema_api("api") {
 | |
|   schemas = true
 | |
|   bundle = true
 | |
|   configs = [ "//build/config:precompiled_headers" ]
 | |
|   bundle_name = "Chrome"
 | |
| 
 | |
|   deps = schema_dependencies
 | |
| }
 | |
| 
 | |
| json_schema_api("api_registration") {
 | |
|   impl_dir = "//cef/libcef/browser/extensions/api"
 | |
|   bundle_registration = true
 | |
|   configs = [ "//build/config:precompiled_headers" ]
 | |
|   bundle_name = "Chrome"
 | |
| 
 | |
|   deps = [
 | |
|     ":api",
 | |
|   ]
 | |
|   deps += schema_dependencies
 | |
| }
 |