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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 "//third_party/cacheinvalidation", | 53 "//third_party/cacheinvalidation", |
54 "//third_party/icu", | 54 "//third_party/icu", |
55 "//third_party/libusb", | 55 "//third_party/libusb", |
56 "//third_party/libxml", | 56 "//third_party/libxml", |
57 "//third_party/zlib", | 57 "//third_party/zlib", |
58 "//ui/accessibility", | 58 "//ui/accessibility", |
59 "//ui/base", | 59 "//ui/base", |
60 "//ui/events", | 60 "//ui/events", |
61 "//ui/gfx", | 61 "//ui/gfx", |
62 "//ui/gfx/geometry", | 62 "//ui/gfx/geometry", |
| 63 "//ui/message_center", |
63 "//ui/native_theme", | 64 "//ui/native_theme", |
64 "//ui/resources", | 65 "//ui/resources", |
65 "//ui/snapshot", | 66 "//ui/snapshot", |
66 "//ui/strings", | 67 "//ui/strings", |
67 #'chrome_browser_ui_views.gyp:browser_ui_views', TODO(GYP) | 68 #'chrome_browser_ui_views.gyp:browser_ui_views', TODO(GYP) |
68 #'../components/components.gyp:auto_login_parser', TODO(GYP) | 69 #'../components/components.gyp:auto_login_parser', TODO(GYP) |
69 #'../components/components.gyp:invalidation', TODO(GYP) | 70 #'../components/components.gyp:invalidation', TODO(GYP) |
70 #'../components/components.gyp:omaha_query_params', TODO(GYP) | 71 #'../components/components.gyp:omaha_query_params', TODO(GYP) |
71 #'../components/components.gyp:onc_component', TODO(GYP) | 72 #'../components/components.gyp:onc_component', TODO(GYP) |
72 #'../components/components.gyp:password_manager_core_browser', TODO(GYP) | 73 #'../components/components.gyp:password_manager_core_browser', TODO(GYP) |
73 #'../ui/message_center/message_center.gyp:message_center', TODO(GYP) | |
74 ] | 74 ] |
75 | 75 |
76 forward_dependent_configs_from = [ | 76 forward_dependent_configs_from = [ |
77 "//components/dom_distiller/core", | 77 "//components/dom_distiller/core", |
78 "//sync", | 78 "//sync", |
79 ] | 79 ] |
80 | 80 |
81 if (!is_ios) { | 81 if (!is_ios) { |
82 sources += rebase_path(gypi_values.chrome_browser_ui_non_ios_sources, | 82 sources += rebase_path(gypi_values.chrome_browser_ui_non_ios_sources, |
83 ".", "//chrome") | 83 ".", "//chrome") |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 } | 412 } |
413 if (enable_service_discovery) { | 413 if (enable_service_discovery) { |
414 sources += rebase_path( | 414 sources += rebase_path( |
415 gypi_values.chrome_browser_ui_service_discovery_sources, | 415 gypi_values.chrome_browser_ui_service_discovery_sources, |
416 ".", "//chrome") | 416 ".", "//chrome") |
417 } | 417 } |
418 if (enable_spellcheck) { | 418 if (enable_spellcheck) { |
419 deps += [ "//third_party/hunspell" ] | 419 deps += [ "//third_party/hunspell" ] |
420 } | 420 } |
421 } | 421 } |
OLD | NEW |