Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(428)

Unified Diff: third_party/WebKit/Source/modules/BUILD.gn

Issue 1367853002: Move GeolocationDispatcher into blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix layout tests Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/BUILD.gn
diff --git a/third_party/WebKit/Source/modules/BUILD.gn b/third_party/WebKit/Source/modules/BUILD.gn
index 0510abca48bdaf99a896fa94783e38b8180a462d..cb7c1f9b182fc91dfae656b1730682d51e9f8db2 100644
--- a/third_party/WebKit/Source/modules/BUILD.gn
+++ b/third_party/WebKit/Source/modules/BUILD.gn
@@ -19,18 +19,18 @@ source_set("modules") {
sources += bindings_modules_v8_files
sources += rebase_path(bindings_modules_generated_aggregate_files, ".", "//")
sources += rebase_path(bindings_modules_generated_union_type_files, ".", "//")
- sources += rebase_path(bindings_modules_generated_partial_aggregate_files, ".", "//")
- sources += rebase_path([ bindings_modules_generated_init_partial_interfaces_file ], ".", "//")
+ sources +=
+ rebase_path(bindings_modules_generated_partial_aggregate_files, ".", "//")
+ sources +=
+ rebase_path([ bindings_modules_generated_init_partial_interfaces_file ],
+ ".",
+ "//")
if (!is_win) {
- sources -= [
- "webdatabase/sqlite/SQLiteFileSystemWin.cpp",
- ]
+ sources -= [ "webdatabase/sqlite/SQLiteFileSystemWin.cpp" ]
}
if (!is_posix) {
- sources -= [
- "webdatabase/sqlite/SQLiteFileSystemPosix.cpp",
- ]
+ sources -= [ "webdatabase/sqlite/SQLiteFileSystemPosix.cpp" ]
}
configs += [
@@ -46,12 +46,17 @@ source_set("modules") {
"//third_party/icu",
"//third_party/sqlite",
"//third_party/zlib",
+ "//mojo/application/public/cpp:cpp_for_chromium",
+ "//mojo/environment:chromium",
+ "//third_party/mojo/src/mojo/edk/system",
+ ]
+
+ public_deps = [
+ "//content/common:mojo_bindings",
Ken Rockot(use gerrit already) 2015/09/29 19:20:45 Looks like this is not in sync with PS1 and should
Sam McNally 2015/09/30 01:51:06 I've split the mojom move into https://codereview.
]
if (is_win) {
- cflags = [
- "/wd4334", # Result of 32-bit shift implicitly converted to 64 bits.
- ]
+ cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64 bits.
# TODO(GYP)
# Shard this taret into parts to work around linker limitations.
# on link time code generation builds.
@@ -75,6 +80,7 @@ source_set("modules_testing") {
]
deps = [
+ ":modules",
"//third_party/WebKit/Source/core",
]
}
« no previous file with comments | « third_party/WebKit/Source/core/dom/ExecutionContext.cpp ('k') | third_party/WebKit/Source/modules/geolocation/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698