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/locales.gni") | 6 import("//build/config/locales.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//chrome/chrome_repack_locales.gni") | 8 import("//chrome/chrome_repack_locales.gni") |
9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
10 | 10 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 51 |
52 deps += [ | 52 deps += [ |
53 # On Linux, link the dependencies (libraries) that make up actual | 53 # On Linux, link the dependencies (libraries) that make up actual |
54 # Chromium functionality directly into the executable. | 54 # Chromium functionality directly into the executable. |
55 ":browser_dependencies", | 55 ":browser_dependencies", |
56 ":child_dependencies", | 56 ":child_dependencies", |
57 | 57 |
58 "//base/allocator", | 58 "//base/allocator", |
59 # Needed to use the master_preferences functions | 59 # Needed to use the master_preferences functions |
60 "//chrome/installer/util", | 60 "//chrome/installer/util", |
61 "//content/app:both", | 61 "//content/public/app:both", |
62 ] | 62 ] |
63 | 63 |
64 # Needed for chrome_main.cc initialization of libraries. | 64 # Needed for chrome_main.cc initialization of libraries. |
65 configs += [ "//build/config/linux:pangocairo" ] | 65 configs += [ "//build/config/linux:pangocairo" ] |
66 | 66 |
67 # TODO(GYP) ['profiling==0 and linux_disable_pie==0', { | 67 # TODO(GYP) ['profiling==0 and linux_disable_pie==0', { |
68 # 'ldflags': [ | 68 # 'ldflags': [ |
69 # '-pie', | 69 # '-pie', |
70 # ], | 70 # ], |
71 #}], | 71 #}], |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 | 505 |
506 # GYP version: chrome/chrome_resources.gyp:chrome_strings | 506 # GYP version: chrome/chrome_resources.gyp:chrome_strings |
507 group("strings") { | 507 group("strings") { |
508 deps = [ | 508 deps = [ |
509 "//chrome/app:chromium_strings", | 509 "//chrome/app:chromium_strings", |
510 "//chrome/app:generated_resources", | 510 "//chrome/app:generated_resources", |
511 "//chrome/app:google_chrome_strings", | 511 "//chrome/app:google_chrome_strings", |
512 "//chrome/app/resources:locale_settings", | 512 "//chrome/app/resources:locale_settings", |
513 ] | 513 ] |
514 } | 514 } |
OLD | NEW |