| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 560 "//chrome") | 560 "//chrome") |
| 561 defines += [ "USE_LIBSECRET" ] | 561 defines += [ "USE_LIBSECRET" ] |
| 562 } | 562 } |
| 563 if (use_aura) { | 563 if (use_aura) { |
| 564 sources += | 564 sources += |
| 565 rebase_path(gypi_values.chrome_browser_aura_sources, ".", "//chrome") | 565 rebase_path(gypi_values.chrome_browser_aura_sources, ".", "//chrome") |
| 566 deps += [ | 566 deps += [ |
| 567 "//ui/aura", | 567 "//ui/aura", |
| 568 "//ui/compositor", | 568 "//ui/compositor", |
| 569 "//ui/keyboard", | 569 "//ui/keyboard", |
| 570 "//ui/keyboard:keyboard_with_content", |
| 570 ] | 571 ] |
| 571 } | 572 } |
| 572 if (ui_compositor_image_transport) { | 573 if (ui_compositor_image_transport) { |
| 573 deps += [ "//ui/gl" ] | 574 deps += [ "//ui/gl" ] |
| 574 } | 575 } |
| 575 | 576 |
| 576 if (use_ash) { | 577 if (use_ash) { |
| 577 sources += | 578 sources += |
| 578 rebase_path(gypi_values.chrome_browser_ash_sources, ".", "//chrome") | 579 rebase_path(gypi_values.chrome_browser_ash_sources, ".", "//chrome") |
| 579 } | 580 } |
| (...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1258 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1259 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1259 deps = [ | 1260 deps = [ |
| 1260 "//components/google/core/browser", | 1261 "//components/google/core/browser", |
| 1261 "//components/omnibox/browser", | 1262 "//components/omnibox/browser", |
| 1262 "//components/rlz", | 1263 "//components/rlz", |
| 1263 "//components/search_engines", | 1264 "//components/search_engines", |
| 1264 "//rlz:rlz_lib", | 1265 "//rlz:rlz_lib", |
| 1265 ] | 1266 ] |
| 1266 } | 1267 } |
| 1267 } | 1268 } |
| OLD | NEW |