| 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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 5 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 source_set("fetcher") { | 7 source_set("fetcher") { |
| 8 sources = [ | 8 sources = [ |
| 9 "about_fetcher.cc", | 9 "about_fetcher.cc", |
| 10 "about_fetcher.h", | 10 "about_fetcher.h", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "//url", | 32 "//url", |
| 33 ] | 33 ] |
| 34 deps = [ | 34 deps = [ |
| 35 "//base/third_party/dynamic_annotations", | 35 "//base/third_party/dynamic_annotations", |
| 36 "//crypto:crypto", | 36 "//crypto:crypto", |
| 37 "//mojo/application/public/cpp:sources", | 37 "//mojo/application/public/cpp:sources", |
| 38 "//mojo/environment:chromium", | 38 "//mojo/environment:chromium", |
| 39 "//mojo/shell", | 39 "//mojo/shell", |
| 40 "//mojo/util:filename_util", | 40 "//mojo/util:filename_util", |
| 41 "//net", | 41 "//net", |
| 42 "//third_party/mojo/src/mojo/edk/system", | |
| 43 "//url", | 42 "//url", |
| 44 ] | 43 ] |
| 44 |
| 45 if (use_chrome_edk) { |
| 46 deps += [ "//mojo/edk/system" ] |
| 47 } else { |
| 48 deps += [ "//third_party/mojo/src/mojo/edk/system" ] |
| 49 } |
| 45 } | 50 } |
| OLD | NEW |