| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 import("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 group("all") { | 10 group("all") { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 "//services/navigation/content_client", | 33 "//services/navigation/content_client", |
| 34 "//services/shell/runner:init", | 34 "//services/shell/runner:init", |
| 35 "//services/shell/runner/common", | 35 "//services/shell/runner/common", |
| 36 "//ui/views", | 36 "//ui/views", |
| 37 "//ui/views/controls/webview", | 37 "//ui/views/controls/webview", |
| 38 "//ui/views/mus", | 38 "//ui/views/mus", |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 data_deps = [ | 41 data_deps = [ |
| 42 ":manifest", | 42 ":manifest", |
| 43 "//mash/wm", | 43 "//components/mus/test_wm", |
| 44 ] | 44 ] |
| 45 | 45 |
| 46 if (is_win) { | 46 if (is_win) { |
| 47 configs -= [ "//build/config/win:console" ] | 47 configs -= [ "//build/config/win:console" ] |
| 48 configs += [ "//build/config/win:windowed" ] | 48 configs += [ "//build/config/win:windowed" ] |
| 49 deps += [ "//sandbox" ] | 49 deps += [ "//sandbox" ] |
| 50 } | 50 } |
| 51 } | 51 } |
| 52 | 52 |
| 53 static_library("lib") { | 53 static_library("lib") { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 "//net:net_resources", | 134 "//net:net_resources", |
| 135 "//third_party/WebKit/public:image_resources", | 135 "//third_party/WebKit/public:image_resources", |
| 136 "//third_party/WebKit/public:resources", | 136 "//third_party/WebKit/public:resources", |
| 137 "//ui/resources", | 137 "//ui/resources", |
| 138 "//ui/strings", | 138 "//ui/strings", |
| 139 "//ui/views/resources", | 139 "//ui/views/resources", |
| 140 ] | 140 ] |
| 141 | 141 |
| 142 output = "$root_out_dir/navigation.pak" | 142 output = "$root_out_dir/navigation.pak" |
| 143 } | 143 } |
| OLD | NEW |