mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	Known issues: - Surface synchronization is now enabled for OSR, see issue #2447. - Jumbo build is broken, fixed in https://crrev.com/868717ce.
		
			
				
	
	
		
			32 lines
		
	
	
		
			893 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			893 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| diff --git chrome/renderer/BUILD.gn chrome/renderer/BUILD.gn
 | |
| index 0b312fc03b93..929fca9eaee3 100644
 | |
| --- chrome/renderer/BUILD.gn
 | |
| +++ chrome/renderer/BUILD.gn
 | |
| @@ -3,6 +3,7 @@
 | |
|  # found in the LICENSE file.
 | |
|  
 | |
|  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")
 | |
| @@ -113,6 +114,7 @@ static_library("renderer") {
 | |
|    defines = []
 | |
|  
 | |
|    deps = [
 | |
| +    "//cef/libcef/features",
 | |
|      "//chrome:resources",
 | |
|      "//chrome:strings",
 | |
|      "//chrome/common",
 | |
| @@ -176,6 +178,10 @@ static_library("renderer") {
 | |
|  
 | |
|    configs += [ "//build/config/compiler:wexit_time_destructors" ]
 | |
|  
 | |
| +  if (enable_cef) {
 | |
| +    configs += [ "//cef/libcef/features:config" ]
 | |
| +  }
 | |
| +
 | |
|    if (enable_nacl) {
 | |
|      deps += [
 | |
|        "//components/nacl/loader",
 |