| 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 "//ui/gl", | 305 "//ui/gl", |
| 306 ] | 306 ] |
| 307 } | 307 } |
| 308 | 308 |
| 309 source_set("session") { | 309 source_set("session") { |
| 310 sources = [ | 310 sources = [ |
| 311 "session/blimp_engine_session.cc", | 311 "session/blimp_engine_session.cc", |
| 312 "session/blimp_engine_session.h", | 312 "session/blimp_engine_session.h", |
| 313 "session/page_load_tracker.cc", | 313 "session/page_load_tracker.cc", |
| 314 "session/page_load_tracker.h", | 314 "session/page_load_tracker.h", |
| 315 "session/tab.cc", |
| 316 "session/tab.h", |
| 315 ] | 317 ] |
| 316 | 318 |
| 317 deps = [ | 319 deps = [ |
| 318 ":app_config", | 320 ":app_config", |
| 319 ":app_settings", | 321 ":app_settings", |
| 320 ":app_switches", | 322 ":app_switches", |
| 321 ":app_ui", | 323 ":app_ui", |
| 322 ":common", | 324 ":common", |
| 323 ":common_user_agent", | 325 ":common_user_agent", |
| 324 ":feature", | 326 ":feature", |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 600 # Include symupload target here as it is needed by the buildbots to upload | 602 # Include symupload target here as it is needed by the buildbots to upload |
| 601 # the symbol file created by dump_syms. | 603 # the symbol file created by dump_syms. |
| 602 deps = [ | 604 deps = [ |
| 603 ":blimp_engine_app", | 605 ":blimp_engine_app", |
| 604 "//breakpad:symupload", | 606 "//breakpad:symupload", |
| 605 dump_syms_label, | 607 dump_syms_label, |
| 606 ] | 608 ] |
| 607 } | 609 } |
| 608 } | 610 } |
| 609 } | 611 } |
| OLD | NEW |