| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "//net", | 87 "//net", |
| 88 "//services/shell/public/cpp", |
| 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 = [ |
| 97 "//base", | 98 "//base", |
| (...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 657 "//content/test:test_support", | 658 "//content/test:test_support", |
| 658 "//testing/gmock", | 659 "//testing/gmock", |
| 659 "//testing/gtest", | 660 "//testing/gtest", |
| 660 ] | 661 ] |
| 661 | 662 |
| 662 data = [ | 663 data = [ |
| 663 "data/", | 664 "data/", |
| 664 "$root_out_dir/blimp_engine.pak", | 665 "$root_out_dir/blimp_engine.pak", |
| 665 ] | 666 ] |
| 666 } | 667 } |
| OLD | NEW |