| 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 # GYP version: components/scheduler.gypi:scheduler | 5 # GYP version: components/scheduler.gypi:scheduler |
| 6 component("scheduler") { | 6 component("scheduler") { |
| 7 sources = [ | 7 sources = [ |
| 8 "base/cancelable_closure_holder.cc", | 8 "base/cancelable_closure_holder.cc", |
| 9 "base/cancelable_closure_holder.h", | 9 "base/cancelable_closure_holder.h", |
| 10 "base/enqueue_order.cc", | 10 "base/enqueue_order.cc", |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 deps = [ | 96 deps = [ |
| 97 ":common", | 97 ":common", |
| 98 "//base", | 98 "//base", |
| 99 "//cc:cc", | 99 "//cc:cc", |
| 100 "//third_party/WebKit/public:blink", | 100 "//third_party/WebKit/public:blink", |
| 101 "//ui/gfx:gfx", | 101 "//ui/gfx:gfx", |
| 102 ] | 102 ] |
| 103 | 103 |
| 104 public_deps = [ | 104 public_deps = [ |
| 105 "//third_party/WebKit/public:blink", | 105 "//third_party/WebKit/public:blink", |
| 106 "//v8", |
| 106 ] | 107 ] |
| 107 } | 108 } |
| 108 | 109 |
| 109 # GYP version: components/scheduler.gypi:scheduler_common | 110 # GYP version: components/scheduler.gypi:scheduler_common |
| 110 source_set("common") { | 111 source_set("common") { |
| 111 sources = [ | 112 sources = [ |
| 112 "common/scheduler_switches.cc", | 113 "common/scheduler_switches.cc", |
| 113 "common/scheduler_switches.h", | 114 "common/scheduler_switches.h", |
| 114 ] | 115 ] |
| 115 } | 116 } |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 | 170 |
| 170 deps = [ | 171 deps = [ |
| 171 "//third_party/WebKit/public:blink", | 172 "//third_party/WebKit/public:blink", |
| 172 ] | 173 ] |
| 173 | 174 |
| 174 public_deps = [ | 175 public_deps = [ |
| 175 ":scheduler", | 176 ":scheduler", |
| 176 "//base", | 177 "//base", |
| 177 ] | 178 ] |
| 178 } | 179 } |
| OLD | NEW |