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("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 "//third_party/libwebp", | 301 "//third_party/libwebp", |
302 "//ui/gfx/geometry", | 302 "//ui/gfx/geometry", |
303 "//ui/gl", | 303 "//ui/gl", |
304 ] | 304 ] |
305 } | 305 } |
306 | 306 |
307 source_set("session") { | 307 source_set("session") { |
308 sources = [ | 308 sources = [ |
309 "session/blimp_engine_session.cc", | 309 "session/blimp_engine_session.cc", |
310 "session/blimp_engine_session.h", | 310 "session/blimp_engine_session.h", |
| 311 "session/page_load_tracker.cc", |
| 312 "session/page_load_tracker.h", |
311 ] | 313 ] |
312 | 314 |
313 deps = [ | 315 deps = [ |
314 ":app_config", | 316 ":app_config", |
315 ":app_settings", | 317 ":app_settings", |
316 ":app_switches", | 318 ":app_switches", |
317 ":app_ui", | 319 ":app_ui", |
318 ":common", | 320 ":common", |
319 ":feature", | 321 ":feature", |
320 "//base", | 322 "//base", |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
596 # Include symupload target here as it is needed by the buildbots to upload | 598 # Include symupload target here as it is needed by the buildbots to upload |
597 # the symbol file created by dump_syms. | 599 # the symbol file created by dump_syms. |
598 deps = [ | 600 deps = [ |
599 ":blimp_engine_app", | 601 ":blimp_engine_app", |
600 "//breakpad:symupload", | 602 "//breakpad:symupload", |
601 dump_syms_label, | 603 dump_syms_label, |
602 ] | 604 ] |
603 } | 605 } |
604 } | 606 } |
605 } | 607 } |
OLD | NEW |