| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "//third_party/leveldatabase", | 67 "//third_party/leveldatabase", |
| 68 "//third_party/re2", | 68 "//third_party/re2", |
| 69 "//ui/accessibility:ax_gen", | 69 "//ui/accessibility:ax_gen", |
| 70 "//ui/base", | 70 "//ui/base", |
| 71 "//ui/gfx", | 71 "//ui/gfx", |
| 72 "//ui/gfx/geometry", | 72 "//ui/gfx/geometry", |
| 73 "//ui/resources", | 73 "//ui/resources", |
| 74 "//ui/strings", | 74 "//ui/strings", |
| 75 "//url", | 75 "//url", |
| 76 "//webkit/browser:storage", | 76 "//webkit/browser:storage", |
| 77 "//webkit/common:storage", | 77 "//webkit/common:storage_common", |
| 78 #"../third_party/webrtc/modules/modules.gyp:desktop_capture", TODO(GYP) | 78 #"../third_party/webrtc/modules/modules.gyp:desktop_capture", TODO(GYP) |
| 79 ] | 79 ] |
| 80 | 80 |
| 81 forward_dependent_configs_from = [ | 81 forward_dependent_configs_from = [ |
| 82 "//chrome/common/extensions/api", | 82 "//chrome/common/extensions/api", |
| 83 "//content/public/browser", | 83 "//content/public/browser", |
| 84 ] | 84 ] |
| 85 | 85 |
| 86 if (is_chromeos) { | 86 if (is_chromeos) { |
| 87 sources += rebase_path( | 87 sources += rebase_path( |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 gypi_values.chrome_browser_extensions_app_list_sources, | 204 gypi_values.chrome_browser_extensions_app_list_sources, |
| 205 ".", "//chrome") | 205 ".", "//chrome") |
| 206 } | 206 } |
| 207 | 207 |
| 208 if (!use_ozone) { | 208 if (!use_ozone) { |
| 209 sources -= [ | 209 sources -= [ |
| 210 "global_shortcut_listener_ozone.cc", | 210 "global_shortcut_listener_ozone.cc", |
| 211 ] | 211 ] |
| 212 } | 212 } |
| 213 } | 213 } |
| OLD | NEW |