Chromium Code Reviews| 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", |
| ] |
| } |