| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 77     "//blimp/common/proto", | 77     "//blimp/common/proto", | 
| 78     "//blimp/engine:blob_channel_mojo_cpp_sources", | 78     "//blimp/engine:blob_channel_mojo_cpp_sources", | 
| 79     "//blimp/net", | 79     "//blimp/net", | 
| 80     "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", | 80     "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", | 
| 81     "//components/crash/content/app:lib", | 81     "//components/crash/content/app:lib", | 
| 82     "//content/public/app:both", | 82     "//content/public/app:both", | 
| 83     "//content/public/browser", | 83     "//content/public/browser", | 
| 84     "//content/public/common", | 84     "//content/public/common", | 
| 85     "//content/public/renderer", | 85     "//content/public/renderer", | 
| 86     "//content/public/utility", | 86     "//content/public/utility", | 
|  | 87     "//device/geolocation:device_geolocation", | 
| 87     "//net", | 88     "//net", | 
| 88   ] | 89   ] | 
| 89 } | 90 } | 
| 90 | 91 | 
| 91 source_set("app_config") { | 92 source_set("app_config") { | 
| 92   sources = [ | 93   sources = [ | 
| 93     "app/blimp_engine_config.cc", | 94     "app/blimp_engine_config.cc", | 
| 94     "app/blimp_engine_config.h", | 95     "app/blimp_engine_config.h", | 
| 95   ] | 96   ] | 
| 96   deps = [ | 97   deps = [ | 
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 272 | 273 | 
| 273   deps = [ | 274   deps = [ | 
| 274     "//base", | 275     "//base", | 
| 275     "//blimp/common", | 276     "//blimp/common", | 
| 276     "//blimp/common/proto", | 277     "//blimp/common/proto", | 
| 277     "//blimp/engine:app_settings", | 278     "//blimp/engine:app_settings", | 
| 278     "//blimp/engine:common", | 279     "//blimp/engine:common", | 
| 279     "//blimp/net", | 280     "//blimp/net", | 
| 280     "//content/public/browser", | 281     "//content/public/browser", | 
| 281     "//content/public/common", | 282     "//content/public/common", | 
|  | 283     "//device/geolocation:device_geolocation", | 
| 282     "//net", | 284     "//net", | 
| 283     "//ui/base", | 285     "//ui/base", | 
| 284     "//ui/base/ime", | 286     "//ui/base/ime", | 
| 285     "//ui/resources", | 287     "//ui/resources", | 
| 286     "//ui/wm", | 288     "//ui/wm", | 
| 287   ] | 289   ] | 
| 288 } | 290 } | 
| 289 | 291 | 
| 290 source_set("renderer") { | 292 source_set("renderer") { | 
| 291   sources = [ | 293   sources = [ | 
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 333     ":app_switches", | 335     ":app_switches", | 
| 334     ":app_ui", | 336     ":app_ui", | 
| 335     ":common", | 337     ":common", | 
| 336     ":common_user_agent", | 338     ":common_user_agent", | 
| 337     ":feature", | 339     ":feature", | 
| 338     "//base", | 340     "//base", | 
| 339     "//blimp/common", | 341     "//blimp/common", | 
| 340     "//blimp/common/proto", | 342     "//blimp/common/proto", | 
| 341     "//blimp/net", | 343     "//blimp/net", | 
| 342     "//content/public/browser", | 344     "//content/public/browser", | 
|  | 345     "//device/geolocation:device_geolocation", | 
| 343     "//net", | 346     "//net", | 
| 344     "//ui/aura", | 347     "//ui/aura", | 
| 345     "//ui/base/ime", | 348     "//ui/base/ime", | 
| 346     "//ui/gfx/geometry", | 349     "//ui/gfx/geometry", | 
| 347     "//ui/wm", | 350     "//ui/wm", | 
| 348   ] | 351   ] | 
| 349 } | 352 } | 
| 350 | 353 | 
| 351 # Implements the browser portions of the Mojo bridge to BlobChannel. | 354 # Implements the browser portions of the Mojo bridge to BlobChannel. | 
| 352 source_set("blob_channel_service") { | 355 source_set("blob_channel_service") { | 
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 457     ":test_support", | 460     ":test_support", | 
| 458     "//base", | 461     "//base", | 
| 459     "//base/test:test_support", | 462     "//base/test:test_support", | 
| 460     "//blimp/common", | 463     "//blimp/common", | 
| 461     "//blimp/common/proto", | 464     "//blimp/common/proto", | 
| 462     "//blimp/engine:app_settings", | 465     "//blimp/engine:app_settings", | 
| 463     "//blimp/net", | 466     "//blimp/net", | 
| 464     "//blimp/net:test_support", | 467     "//blimp/net:test_support", | 
| 465     "//content", | 468     "//content", | 
| 466     "//content/public/browser", | 469     "//content/public/browser", | 
|  | 470     "//device/geolocation:device_geolocation", | 
| 467     "//net", | 471     "//net", | 
| 468     "//net:test_support", | 472     "//net:test_support", | 
| 469     "//testing/gmock", | 473     "//testing/gmock", | 
| 470     "//testing/gtest", | 474     "//testing/gtest", | 
| 471     "//third_party/WebKit/public:blink_headers", | 475     "//third_party/WebKit/public:blink_headers", | 
| 472     "//ui/base:test_support", | 476     "//ui/base:test_support", | 
| 473   ] | 477   ] | 
| 474 } | 478 } | 
| 475 | 479 | 
| 476 source_set("renderer_unit_tests") { | 480 source_set("renderer_unit_tests") { | 
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 690     "//content/test:test_support", | 694     "//content/test:test_support", | 
| 691     "//testing/gmock", | 695     "//testing/gmock", | 
| 692     "//testing/gtest", | 696     "//testing/gtest", | 
| 693   ] | 697   ] | 
| 694 | 698 | 
| 695   data = [ | 699   data = [ | 
| 696     "//blimp/test/data/", | 700     "//blimp/test/data/", | 
| 697     "$root_out_dir/blimp_engine.pak", | 701     "$root_out_dir/blimp_engine.pak", | 
| 698   ] | 702   ] | 
| 699 } | 703 } | 
| OLD | NEW | 
|---|