Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(465)

Side by Side Diff: extensions/shell/BUILD.gn

Issue 2841443005: [Bindings] Create and use V8 context snapshots (Closed)
Patch Set: Support runtime feature on templates Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « content/shell/BUILD.gn ('k') | gin/BUILD.gn » ('j') | gin/isolate_holder.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698