| 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 "session/page_load_tracker.h", | 327 "session/page_load_tracker.h", |
| 328 "session/tab.cc", | 328 "session/tab.cc", |
| 329 "session/tab.h", | 329 "session/tab.h", |
| 330 ] | 330 ] |
| 331 | 331 |
| 332 deps = [ | 332 deps = [ |
| 333 ":app_config", | 333 ":app_config", |
| 334 ":app_settings", | 334 ":app_settings", |
| 335 ":app_switches", | 335 ":app_switches", |
| 336 ":app_ui", | 336 ":app_ui", |
| 337 ":blob_channel_service", |
| 337 ":common", | 338 ":common", |
| 338 ":common_user_agent", | 339 ":common_user_agent", |
| 339 ":feature", | 340 ":feature", |
| 340 "//base", | 341 "//base", |
| 341 "//blimp/common", | 342 "//blimp/common", |
| 342 "//blimp/common/proto", | 343 "//blimp/common/proto", |
| 343 "//blimp/net", | 344 "//blimp/net", |
| 344 "//content/public/browser", | 345 "//content/public/browser", |
| 345 "//device/geolocation:device_geolocation", | 346 "//device/geolocation:device_geolocation", |
| 346 "//net", | 347 "//net", |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 "//content/test:test_support", | 696 "//content/test:test_support", |
| 696 "//testing/gmock", | 697 "//testing/gmock", |
| 697 "//testing/gtest", | 698 "//testing/gtest", |
| 698 ] | 699 ] |
| 699 | 700 |
| 700 data = [ | 701 data = [ |
| 701 "//blimp/test/data/", | 702 "//blimp/test/data/", |
| 702 "$root_out_dir/blimp_engine.pak", | 703 "$root_out_dir/blimp_engine.pak", |
| 703 ] | 704 ] |
| 704 } | 705 } |
| OLD | NEW |