| 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/features.gni") |    5 import("//build/config/features.gni") | 
|    6 import("//build/config/ui.gni") |    6 import("//build/config/ui.gni") | 
|    7  |    7  | 
|    8 assert(enable_extensions) |    8 assert(enable_extensions) | 
|    9  |    9  | 
|   10 gypi_values = |   10 gypi_values = | 
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   63     "//components/policy", |   63     "//components/policy", | 
|   64     "//components/pref_registry", |   64     "//components/pref_registry", | 
|   65     "//components/proximity_auth", |   65     "//components/proximity_auth", | 
|   66     "//components/proxy_config", |   66     "//components/proxy_config", | 
|   67     "//components/resources", |   67     "//components/resources", | 
|   68     "//components/safe_json", |   68     "//components/safe_json", | 
|   69     "//components/search_engines", |   69     "//components/search_engines", | 
|   70     "//components/sessions", |   70     "//components/sessions", | 
|   71     "//components/signin/core/browser", |   71     "//components/signin/core/browser", | 
|   72     "//components/strings", |   72     "//components/strings", | 
 |   73     "//components/sync", | 
|   73     "//components/syncable_prefs", |   74     "//components/syncable_prefs", | 
|   74     "//components/update_client", |   75     "//components/update_client", | 
|   75     "//components/url_matcher", |   76     "//components/url_matcher", | 
|   76     "//components/web_modal", |   77     "//components/web_modal", | 
|   77     "//content/app/resources", |   78     "//content/app/resources", | 
|   78     "//content/public/common", |   79     "//content/public/common", | 
|   79     "//crypto", |   80     "//crypto", | 
|   80     "//device/bluetooth", |   81     "//device/bluetooth", | 
|   81     "//device/hid", |   82     "//device/hid", | 
|   82     "//extensions:extensions_resources", |   83     "//extensions:extensions_resources", | 
|   83     "//extensions/browser", |   84     "//extensions/browser", | 
|   84     "//extensions/common/api", |   85     "//extensions/common/api", | 
|   85     "//extensions/common/api:api_registration", |   86     "//extensions/common/api:api_registration", | 
|   86     "//extensions/strings", |   87     "//extensions/strings", | 
|   87     "//net", |   88     "//net", | 
|   88     "//skia", |   89     "//skia", | 
|   89     "//storage/browser", |   90     "//storage/browser", | 
|   90     "//storage/common", |   91     "//storage/common", | 
|   91     "//sync", |  | 
|   92     "//third_party/WebKit/public:image_resources", |   92     "//third_party/WebKit/public:image_resources", | 
|   93     "//third_party/WebKit/public:resources", |   93     "//third_party/WebKit/public:resources", | 
|   94     "//third_party/cacheinvalidation", |   94     "//third_party/cacheinvalidation", | 
|   95     "//third_party/icu", |   95     "//third_party/icu", | 
|   96     "//third_party/leveldatabase", |   96     "//third_party/leveldatabase", | 
|   97     "//third_party/libaddressinput:util", |   97     "//third_party/libaddressinput:util", | 
|   98     "//third_party/re2", |   98     "//third_party/re2", | 
|   99     "//third_party/webrtc/modules/desktop_capture", |   99     "//third_party/webrtc/modules/desktop_capture", | 
|  100     "//ui/accessibility:ax_gen", |  100     "//ui/accessibility:ax_gen", | 
|  101     "//ui/base", |  101     "//ui/base", | 
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  245                     "//chrome") |  245                     "//chrome") | 
|  246   } |  246   } | 
|  247  |  247  | 
|  248   if (is_chromeos && use_ozone) { |  248   if (is_chromeos && use_ozone) { | 
|  249     sources -= [ "global_shortcut_listener_chromeos.cc" ] |  249     sources -= [ "global_shortcut_listener_chromeos.cc" ] | 
|  250   } |  250   } | 
|  251   if (!use_ozone) { |  251   if (!use_ozone) { | 
|  252     sources -= [ "global_shortcut_listener_ozone.cc" ] |  252     sources -= [ "global_shortcut_listener_ozone.cc" ] | 
|  253   } |  253   } | 
|  254 } |  254 } | 
| OLD | NEW |