|
@@ -1,15 +1,14 @@
|
|
|
import("//build/config/ui.gni")
|
|
|
|
|
|
-filenames_gypi = exec_script(
|
|
|
- "//build/gypi_to_gn.py",
|
|
|
- [ rebase_path("filenames.gypi") ],
|
|
|
- "scope",
|
|
|
- [ "filenames.gypi" ]
|
|
|
-)
|
|
|
+filenames_gypi = exec_script("//build/gypi_to_gn.py",
|
|
|
+ [ rebase_path("filenames.gypi") ],
|
|
|
+ "scope",
|
|
|
+ [ "filenames.gypi" ])
|
|
|
|
|
|
static_library("brightray") {
|
|
|
deps = [
|
|
|
"//base",
|
|
|
+ "//base:base_static",
|
|
|
"//components/network_session_configurator/common",
|
|
|
"//components/prefs",
|
|
|
"//content/public/browser",
|
|
@@ -19,9 +18,7 @@ static_library("brightray") {
|
|
|
"//ui/views",
|
|
|
]
|
|
|
|
|
|
- include_dirs = [
|
|
|
- "..",
|
|
|
- ]
|
|
|
+ include_dirs = [ ".." ]
|
|
|
|
|
|
defines = [
|
|
|
"DISABLE_NACL=1",
|
|
@@ -29,9 +26,7 @@ static_library("brightray") {
|
|
|
]
|
|
|
|
|
|
if (is_linux) {
|
|
|
- deps += [
|
|
|
- "//build/config/linux/gtk",
|
|
|
- ]
|
|
|
+ deps += [ "//build/config/linux/gtk" ]
|
|
|
}
|
|
|
|
|
|
extra_source_filters = []
|
|
@@ -43,7 +38,8 @@ static_library("brightray") {
|
|
|
]
|
|
|
}
|
|
|
|
|
|
- set_sources_assignment_filter(sources_assignment_filter + extra_source_filters)
|
|
|
+ set_sources_assignment_filter(
|
|
|
+ sources_assignment_filter + extra_source_filters)
|
|
|
sources = filenames_gypi.brightray_sources
|
|
|
set_sources_assignment_filter(sources_assignment_filter)
|
|
|
}
|