| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//sky/engine/bindings/bindings.gni") | 5 import("//sky/engine/bindings/bindings.gni") |
| 6 import("//sky/engine/core/core.gni") | 6 import("//sky/engine/core/core.gni") |
| 7 | 7 |
| 8 source_set("bindings") { | 8 source_set("bindings") { |
| 9 sources = [ | 9 sources = [ |
| 10 "builtin.cc", | 10 "builtin.cc", |
| 11 "builtin.h", | 11 "builtin.h", |
| 12 "builtin_natives.cc", | 12 "builtin_natives.cc", |
| 13 "builtin_natives.h", | 13 "builtin_natives.h", |
| 14 "builtin_sky.cc", | 14 "builtin_sky.cc", |
| 15 "builtin_sky.h", | 15 "builtin_sky.h", |
| 16 "custom/dart_element_custom.cc", |
| 16 "dart_callback.cc", | 17 "dart_callback.cc", |
| 17 "dart_callback.h", | 18 "dart_callback.h", |
| 18 "dart_event_listener.cc", | 19 "dart_event_listener.cc", |
| 19 "dart_event_listener.h", | 20 "dart_event_listener.h", |
| 20 "exception_messages.cc", | 21 "exception_messages.cc", |
| 21 "exception_messages.h", | 22 "exception_messages.h", |
| 22 "exception_state.cc", | 23 "exception_state.cc", |
| 23 "exception_state.h", | 24 "exception_state.h", |
| 24 "exception_state_placeholder.cc", | 25 "exception_state_placeholder.cc", |
| 25 "exception_state_placeholder.h", | 26 "exception_state_placeholder.h", |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 ] | 390 ] |
| 390 | 391 |
| 391 include_dirs = [ | 392 include_dirs = [ |
| 392 "..", | 393 "..", |
| 393 "$root_build_dir", | 394 "$root_build_dir", |
| 394 ] | 395 ] |
| 395 | 396 |
| 396 sources = get_target_outputs(":compile_idls") | 397 sources = get_target_outputs(":compile_idls") |
| 397 sources += get_target_outputs(":generate_dart_globals") | 398 sources += get_target_outputs(":generate_dart_globals") |
| 398 } | 399 } |
| OLD | NEW |