Chromium Code Reviews| Index: mojo/public/cpp/bindings/BUILD.gn |
| diff --git a/mojo/public/cpp/bindings/BUILD.gn b/mojo/public/cpp/bindings/BUILD.gn |
| index bba3519b5550079c13fc1370c9aeb75422b75a94..130cc1bd4c6ea277c69ae9b8e9d159e7c007cbdb 100644 |
| --- a/mojo/public/cpp/bindings/BUILD.gn |
| +++ b/mojo/public/cpp/bindings/BUILD.gn |
| @@ -5,7 +5,6 @@ |
| source_set("bindings") { |
| sources = [ |
| "array.h", |
| - "callback.h", |
| "error_handler.h", |
| "interface_ptr.h", |
| "message.h", |
| @@ -23,7 +22,6 @@ source_set("bindings") { |
| "lib/bounds_checker.cc", |
| "lib/bounds_checker.h", |
| "lib/buffer.h", |
| - "lib/callback_internal.h", |
| "lib/connector.cc", |
| "lib/connector.h", |
| "lib/filter_chain.cc", |
| @@ -42,12 +40,29 @@ source_set("bindings") { |
| "lib/no_interface.cc", |
| "lib/router.cc", |
| "lib/router.h", |
| - "lib/shared_data.h", |
| - "lib/shared_ptr.h", |
| "lib/string_serialization.cc", |
| "lib/string_serialization.h", |
| - "lib/template_util.h", |
| "lib/validation_errors.cc", |
| "lib/validation_errors.h", |
| ] |
| + |
| + deps = [ |
| + ":callback", |
| + "//mojo/public/cpp/environment", |
| + "//mojo/public/cpp/system", |
| + ] |
| } |
| + |
| +source_set("callback") { |
| + sources = [ |
| + "callback.h", |
| + "lib/callback_internal.h", |
| + "lib/template_util.h", |
| + "lib/shared_data.h", |
| + "lib/shared_ptr.h", |
| + ] |
| + |
| + deps = [ "//mojo/public/cpp/system" ] |
| +} |
| + |
|
viettrungluu
2014/09/26 00:34:41
" x2
|
| + |