Update build_libs script for Chromium 61

This commit is contained in:
Aleksei Kuzmin 2017-10-02 00:36:44 +03:00 коммит произвёл Cheng Zhao
Родитель e25744f56d
Коммит 91893e9183
1 изменённых файлов: 28 добавлений и 11 удалений

Просмотреть файл

@ -137,6 +137,8 @@ with open(args.out, 'w') as out:
"components/leveldb", "components/leveldb",
"components/link_header_util", "components/link_header_util",
"components/memory_coordinator", "components/memory_coordinator",
"components/metrics/public/interfaces",
"components/metrics/single_sample_metrics",
"components/mime_util", "components/mime_util",
"components/mus/clipboard", "components/mus/clipboard",
"components/mus/common", "components/mus/common",
@ -144,6 +146,7 @@ with open(args.out, 'w') as out:
"components/mus/gpu", "components/mus/gpu",
"components/mus/input_devices", "components/mus/input_devices",
"components/mus/public", "components/mus/public",
"components/network_session_configurator/common",
"components/os_crypt", "components/os_crypt",
"components/payments", "components/payments",
"components/prefs", "components/prefs",
@ -156,7 +159,12 @@ with open(args.out, 'w') as out:
"components/tracing/tracing", "components/tracing/tracing",
"components/url_formatter", "components/url_formatter",
"components/variations", "components/variations",
"components/viz/frame_sinks/frame_sinks", "components/vector_icons",
"components/viz/client",
"components/viz/common",
"components/viz/hit_test",
"components/viz/host",
"components/viz/service/service",
"components/webcrypto", "components/webcrypto",
"components/webmessaging", "components/webmessaging",
]) ])
@ -184,14 +192,14 @@ with open(args.out, 'w') as out:
out, out,
"obj_net", "obj_net",
[ [
"net", "net/base",
"net/constants",
"net/extras",
"net/http_server",
"net/net",
"net/net_with_v8",
]) ])
additional_services = []
if sys.platform == 'darwin':
additional_services = [
"services/service_manager/public/cpp/standalone_service",
]
gen_list( gen_list(
out, out,
"obj_services", "obj_services",
@ -200,12 +208,17 @@ with open(args.out, 'w') as out:
"services/data_decoder", "services/data_decoder",
"services/device", "services/device",
"services/file", "services/file",
"services/metrics/public",
"services/resource_coordinator", "services/resource_coordinator",
"services/service_manager/background",
"services/service_manager/embedder", "services/service_manager/embedder",
"services/service_manager/public/cpp/sources", "services/service_manager/public/cpp/cpp",
"services/service_manager/public/cpp/cpp_types",
"services/service_manager/public/cpp/standalone_service/standalone_service",
"services/service_manager/public/interfaces", "services/service_manager/public/interfaces",
"services/service_manager/runner", "services/service_manager/runner",
"services/service_manager/service_manager", "services/service_manager/service_manager",
"services/service_manager/standalone",
"services/shape_detection", "services/shape_detection",
"services/shell/public", "services/shell/public",
"services/shell/runner", "services/shell/runner",
@ -214,7 +227,9 @@ with open(args.out, 'w') as out:
"services/ui/public", "services/ui/public",
"services/ui/gpu", "services/ui/gpu",
"services/user", "services/user",
] + additional_services) "services/video_capture",
"services/viz/hit_test/public/interfaces",
])
gen_list( gen_list(
out, out,
@ -235,6 +250,8 @@ with open(args.out, 'w') as out:
"third_party/angle/libGLESv2", "third_party/angle/libGLESv2",
"third_party/angle/preprocessor", "third_party/angle/preprocessor",
"third_party/angle/src/third_party/libXNVCtrl", "third_party/angle/src/third_party/libXNVCtrl",
"third_party/angle/src/vulkan_support/glslang",
"third_party/angle/src/vulkan_support/vulkan_loader",
"third_party/angle/translator", "third_party/angle/translator",
"third_party/angle/translator_lib", "third_party/angle/translator_lib",
]) ])
@ -253,14 +270,14 @@ with open(args.out, 'w') as out:
[ [
"third_party/WebKit/public", "third_party/WebKit/public",
"third_party/WebKit/Source/core", "third_party/WebKit/Source/core",
"third_party/WebKit/Source/controller",
"third_party/WebKit/Source/platform/heap", "third_party/WebKit/Source/platform/heap",
"third_party/WebKit/Source/platform/blink_common", "third_party/WebKit/Source/platform/blink_common",
"third_party/WebKit/Source/platform/loader", "third_party/WebKit/Source/platform/loader",
"third_party/WebKit/Source/platform/mojo", "third_party/WebKit/Source/platform/mojo",
"third_party/WebKit/Source/platform/platform", "third_party/WebKit/Source/platform/platform",
"third_party/WebKit/Source/platform/wtf/platform_wtf", "third_party/WebKit/Source/platform/wtf",
"third_party/WebKit/Source/web", "third_party/WebKit/Source/web",
"third_party/WebKit/Source/wtf",
]) ])
gen_list( gen_list(