| 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 import("//chrome/version.gni") | 7 import("//chrome/version.gni") |
| 8 | 8 |
| 9 # TODO(GYP) for Windows need to the the reorder-imports step which probably | 9 # TODO(GYP) for Windows need to the the reorder-imports step which probably |
| 10 # means adding another target and renaming this to chrome_initial like in GYP. | 10 # means adding another target and renaming this to chrome_initial like in GYP. |
| 11 #executable("chrome") { # TODO(GYP) enable once this links. | 11 executable("chrome") { |
| 12 source_set("chrome") { | |
| 13 # Because the sources list varies so significantly per-platform, generally | 12 # Because the sources list varies so significantly per-platform, generally |
| 14 # each platform lists its own files rather than relying on filtering or | 13 # each platform lists its own files rather than relying on filtering or |
| 15 # removing unused files. | 14 # removing unused files. |
| 16 sources = [ | 15 sources = [ |
| 17 "app/chrome_exe_resource.h", | 16 "app/chrome_exe_resource.h", |
| 18 ] | 17 ] |
| 19 deps = [] | 18 deps = [] |
| 20 | 19 |
| 21 # TODO(GYP) mac_bundle_resources, xcode_settings | 20 # TODO(GYP) mac_bundle_resources, xcode_settings |
| 22 | 21 |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 | 275 |
| 277 # GYP version: chrome/chrome_resources.gyp:chrome_strings | 276 # GYP version: chrome/chrome_resources.gyp:chrome_strings |
| 278 group("strings") { | 277 group("strings") { |
| 279 deps = [ | 278 deps = [ |
| 280 "//chrome/app:chromium_strings", | 279 "//chrome/app:chromium_strings", |
| 281 "//chrome/app:generated_resources", | 280 "//chrome/app:generated_resources", |
| 282 "//chrome/app:google_chrome_strings", | 281 "//chrome/app:google_chrome_strings", |
| 283 "//chrome/app/resources:locale_settings", | 282 "//chrome/app/resources:locale_settings", |
| 284 ] | 283 ] |
| 285 } | 284 } |
| OLD | NEW |