| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 | 8 |
| 9 gypi_values = exec_script( | 9 gypi_values = exec_script( |
| 10 "//build/gypi_to_gn.py", | 10 "//build/gypi_to_gn.py", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 "//components/strings", | 41 "//components/strings", |
| 42 "//components/url_matcher", | 42 "//components/url_matcher", |
| 43 "//content/public/browser", | 43 "//content/public/browser", |
| 44 "//content/public/common", | 44 "//content/public/common", |
| 45 "//crypto", | 45 "//crypto", |
| 46 "//extensions/common/api", | 46 "//extensions/common/api", |
| 47 "//extensions/strings", | 47 "//extensions/strings", |
| 48 "//net", | 48 "//net", |
| 49 "//skia", | 49 "//skia", |
| 50 "//sync", | 50 "//sync", |
| 51 "//third_party/WebKit/public:resources", |
| 51 "//third_party/cacheinvalidation", | 52 "//third_party/cacheinvalidation", |
| 52 "//third_party/icu", | 53 "//third_party/icu", |
| 53 "//third_party/leveldatabase", | 54 "//third_party/leveldatabase", |
| 54 "//third_party/re2", | 55 "//third_party/re2", |
| 55 "//ui/accessibility:ax_gen", | 56 "//ui/accessibility:ax_gen", |
| 56 "//ui/base", | 57 "//ui/base", |
| 57 "//ui/gfx", | 58 "//ui/gfx", |
| 58 "//ui/gfx/geometry", | 59 "//ui/gfx/geometry", |
| 59 "//ui/resources", | 60 "//ui/resources", |
| 60 "//ui/strings", | 61 "//ui/strings", |
| 61 "//url", | 62 "//url", |
| 62 "//webkit:resources", | |
| 63 "//webkit/browser:storage", | 63 "//webkit/browser:storage", |
| 64 "//webkit/common:storage", | 64 "//webkit/common:storage", |
| 65 "//webkit/glue/resources", |
| 65 #"debugger", TODO(GYP) | 66 #"debugger", TODO(GYP) |
| 66 #"installer_util", TODO(GYP) | 67 #"installer_util", TODO(GYP) |
| 67 #"../components/components.gyp:omaha_query_params", TODO(GYP) | 68 #"../components/components.gyp:omaha_query_params", TODO(GYP) |
| 68 #"../extensions/extensions.gyp:extensions_browser", TODO(GYP) | 69 #"../extensions/extensions.gyp:extensions_browser", TODO(GYP) |
| 69 #"../third_party/webrtc/modules/modules.gyp:desktop_capture", TODO(GYP) | 70 #"../third_party/webrtc/modules/modules.gyp:desktop_capture", TODO(GYP) |
| 70 ] | 71 ] |
| 71 | 72 |
| 72 forward_dependent_configs_from = [ | 73 forward_dependent_configs_from = [ |
| 73 "//chrome/common/extensions/api", | 74 "//chrome/common/extensions/api", |
| 74 "//content/public/browser", | 75 "//content/public/browser", |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 ".", "//chrome") | 211 ".", "//chrome") |
| 211 } | 212 } |
| 212 | 213 |
| 213 if (!use_ozone) { | 214 if (!use_ozone) { |
| 214 sources -= [ | 215 sources -= [ |
| 215 "global_shortcut_listener_ozone.cc", | 216 "global_shortcut_listener_ozone.cc", |
| 216 ] | 217 ] |
| 217 } | 218 } |
| 218 } | 219 } |
| 219 } | 220 } |
| OLD | NEW |