mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			982 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			982 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| diff --git chrome/renderer/BUILD.gn chrome/renderer/BUILD.gn
 | |
| index 15957beb86998..fa0a5a1b76b9d 100644
 | |
| --- chrome/renderer/BUILD.gn
 | |
| +++ chrome/renderer/BUILD.gn
 | |
| @@ -5,6 +5,7 @@
 | |
|  import("//build/config/buildflags_paint_preview.gni")
 | |
|  import("//build/config/chromeos/ui_mode.gni")
 | |
|  import("//build/config/features.gni")
 | |
| +import("//cef/libcef/features/features.gni")
 | |
|  import("//chrome/common/features.gni")
 | |
|  import("//components/nacl/features.gni")
 | |
|  import("//components/offline_pages/buildflags/features.gni")
 | |
| @@ -136,6 +137,7 @@ static_library("renderer") {
 | |
|      ":process_state",
 | |
|      "//base/allocator:buildflags",
 | |
|      "//build:chromeos_buildflags",
 | |
| +    "//cef/libcef/features:buildflags",
 | |
|      "//chrome:resources",
 | |
|      "//chrome:strings",
 | |
|      "//chrome/common",
 | |
| @@ -249,6 +251,10 @@ static_library("renderer") {
 | |
|      ]
 | |
|    }
 | |
|  
 | |
| +  if (enable_cef) {
 | |
| +    configs += [ "//cef/libcef/features:config" ]
 | |
| +  }
 | |
| +
 | |
|    if (enable_nacl) {
 | |
|      deps += [ "//components/nacl/renderer" ]
 | |
|  
 |