Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("bindings") { | 5 source_set("bindings") { |
| 6 sources = [ | 6 sources = [ |
| 7 "array.h", | 7 "array.h", |
| 8 "error_handler.h", | 8 "error_handler.h", |
| 9 "interface_ptr.h", | 9 "interface_ptr.h", |
| 10 "message.h", | 10 "message.h", |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 21 "lib/bindings_serialization.h", | 21 "lib/bindings_serialization.h", |
| 22 "lib/bounds_checker.cc", | 22 "lib/bounds_checker.cc", |
| 23 "lib/bounds_checker.h", | 23 "lib/bounds_checker.h", |
| 24 "lib/buffer.h", | 24 "lib/buffer.h", |
| 25 "lib/connector.cc", | 25 "lib/connector.cc", |
| 26 "lib/connector.h", | 26 "lib/connector.h", |
| 27 "lib/filter_chain.cc", | 27 "lib/filter_chain.cc", |
| 28 "lib/filter_chain.h", | 28 "lib/filter_chain.h", |
| 29 "lib/fixed_buffer.cc", | 29 "lib/fixed_buffer.cc", |
| 30 "lib/fixed_buffer.h", | 30 "lib/fixed_buffer.h", |
| 31 "lib/map.h", | |
|
yzshen1
2014/10/09 17:41:58
map.h should be outside of lib because it is a cla
| |
| 32 "lib/map_data_internal.h", | |
| 33 "lib/map_internal.h", | |
| 34 "lib/map_serialization.h", | |
| 31 "lib/message.cc", | 35 "lib/message.cc", |
| 32 "lib/message_builder.cc", | 36 "lib/message_builder.cc", |
| 33 "lib/message_builder.h", | 37 "lib/message_builder.h", |
| 34 "lib/message_filter.cc", | 38 "lib/message_filter.cc", |
| 35 "lib/message_header_validator.cc", | 39 "lib/message_header_validator.cc", |
| 36 "lib/message_header_validator.h", | 40 "lib/message_header_validator.h", |
| 37 "lib/message_internal.h", | 41 "lib/message_internal.h", |
| 38 "lib/message_queue.cc", | 42 "lib/message_queue.cc", |
| 39 "lib/message_queue.h", | 43 "lib/message_queue.h", |
| 40 "lib/no_interface.cc", | 44 "lib/no_interface.cc", |
| 41 "lib/router.cc", | 45 "lib/router.cc", |
| 42 "lib/router.h", | 46 "lib/router.h", |
| 43 "lib/string_serialization.cc", | 47 "lib/string_serialization.cc", |
| 44 "lib/string_serialization.h", | 48 "lib/string_serialization.h", |
| 49 "lib/validate_params.h", | |
| 45 "lib/validation_errors.cc", | 50 "lib/validation_errors.cc", |
| 46 "lib/validation_errors.h", | 51 "lib/validation_errors.h", |
| 47 ] | 52 ] |
| 48 | 53 |
| 49 deps = [ | 54 deps = [ |
| 50 ":callback", | 55 ":callback", |
| 51 "//mojo/public/cpp/environment", | 56 "//mojo/public/cpp/environment", |
| 52 "//mojo/public/cpp/system", | 57 "//mojo/public/cpp/system", |
| 53 ] | 58 ] |
| 54 } | 59 } |
| 55 | 60 |
| 56 source_set("callback") { | 61 source_set("callback") { |
| 57 sources = [ | 62 sources = [ |
| 58 "callback.h", | 63 "callback.h", |
| 59 "lib/callback_internal.h", | 64 "lib/callback_internal.h", |
| 60 "lib/template_util.h", | 65 "lib/template_util.h", |
| 61 "lib/shared_data.h", | 66 "lib/shared_data.h", |
| 62 "lib/shared_ptr.h", | 67 "lib/shared_ptr.h", |
| 63 ] | 68 ] |
| 64 | 69 |
| 65 deps = [ "//mojo/public/cpp/system" ] | 70 deps = [ "//mojo/public/cpp/system" ] |
| 66 } | 71 } |
| OLD | NEW |