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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 "//build/util/LASTCHANGE", | 321 "//build/util/LASTCHANGE", |
322 "//chrome/VERSION", | 322 "//chrome/VERSION", |
323 ] | 323 ] |
324 output = "$target_gen_dir/common/version.h" | 324 output = "$target_gen_dir/common/version.h" |
325 } | 325 } |
326 | 326 |
327 if (is_mac) { | 327 if (is_mac) { |
328 bundle_data("app_shell_framework_resources") { | 328 bundle_data("app_shell_framework_resources") { |
329 sources = [ | 329 sources = [ |
330 "$root_gen_dir/extensions/shell/app_shell_resources.pak", | 330 "$root_gen_dir/extensions/shell/app_shell_resources.pak", |
| 331 "$root_out_dir/blink_v8_snapshot.bin", |
331 "$root_out_dir/extensions_shell_and_test.pak", | 332 "$root_out_dir/extensions_shell_and_test.pak", |
332 ] | 333 ] |
333 public_deps = [ | 334 public_deps = [ |
334 ":resources_grit", | 335 ":resources_grit", |
335 "//extensions:shell_and_test_pak", | 336 "//extensions:shell_and_test_pak", |
| 337 "//gin:blink_v8_snapshot", |
336 ] | 338 ] |
337 if (icu_use_data_file) { | 339 if (icu_use_data_file) { |
338 sources += [ "$root_out_dir/icudtl.dat" ] | 340 sources += [ "$root_out_dir/icudtl.dat" ] |
339 public_deps += [ "//third_party/icu:icudata" ] | 341 public_deps += [ "//third_party/icu:icudata" ] |
340 } | 342 } |
341 if (v8_use_external_startup_data) { | 343 if (v8_use_external_startup_data) { |
342 sources += [ | 344 sources += [ |
343 "$root_out_dir/natives_blob.bin", | 345 "$root_out_dir/natives_blob.bin", |
344 "$root_out_dir/snapshot_blob.bin", | 346 "$root_out_dir/snapshot_blob.bin", |
345 ] | 347 ] |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 "//extensions/browser", | 452 "//extensions/browser", |
451 ] | 453 ] |
452 | 454 |
453 if (is_chromeos) { | 455 if (is_chromeos) { |
454 deps += [ | 456 deps += [ |
455 "//chromeos:test_support", | 457 "//chromeos:test_support", |
456 "//components/keyed_service/content", | 458 "//components/keyed_service/content", |
457 ] | 459 ] |
458 } | 460 } |
459 } | 461 } |
OLD | NEW |