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("//build/util/process_version.gni") | 7 import("//build/util/process_version.gni") |
8 import("//extensions/features/features.gni") | 8 import("//extensions/features/features.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 "//chrome/VERSION", | 329 "//chrome/VERSION", |
330 ] | 330 ] |
331 output = "$target_gen_dir/common/version.h" | 331 output = "$target_gen_dir/common/version.h" |
332 } | 332 } |
333 | 333 |
334 if (is_mac) { | 334 if (is_mac) { |
335 bundle_data("app_shell_framework_resources") { | 335 bundle_data("app_shell_framework_resources") { |
336 sources = [ | 336 sources = [ |
337 "$root_gen_dir/extensions/shell/app_shell_resources.pak", | 337 "$root_gen_dir/extensions/shell/app_shell_resources.pak", |
338 "$root_out_dir/extensions_shell_and_test.pak", | 338 "$root_out_dir/extensions_shell_and_test.pak", |
339 "$root_out_dir/v8_context_snapshot.bin", | |
340 ] | 339 ] |
341 public_deps = [ | 340 public_deps = [ |
342 ":resources_grit", | 341 ":resources_grit", |
343 "//extensions:shell_and_test_pak", | 342 "//extensions:shell_and_test_pak", |
344 "//tools/v8_context_snapshot:v8_context_snapshot", | |
345 ] | 343 ] |
346 if (icu_use_data_file) { | 344 if (icu_use_data_file) { |
347 sources += [ "$root_out_dir/icudtl.dat" ] | 345 sources += [ "$root_out_dir/icudtl.dat" ] |
348 public_deps += [ "//third_party/icu:icudata" ] | 346 public_deps += [ "//third_party/icu:icudata" ] |
349 } | 347 } |
350 if (v8_use_external_startup_data) { | 348 if (v8_use_external_startup_data) { |
351 sources += [ | 349 sources += [ |
352 "$root_out_dir/natives_blob.bin", | 350 "$root_out_dir/natives_blob.bin", |
353 "$root_out_dir/snapshot_blob.bin", | 351 "$root_out_dir/snapshot_blob.bin", |
354 ] | 352 ] |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 "//extensions/browser", | 457 "//extensions/browser", |
460 ] | 458 ] |
461 | 459 |
462 if (is_chromeos) { | 460 if (is_chromeos) { |
463 deps += [ | 461 deps += [ |
464 "//chromeos:test_support", | 462 "//chromeos:test_support", |
465 "//components/keyed_service/content", | 463 "//components/keyed_service/content", |
466 ] | 464 ] |
467 } | 465 } |
468 } | 466 } |
OLD | NEW |