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

Side by Side Diff: content/content.gyp

Issue 829803003: Adding Chrome-side WebVR interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updates/cleanups before pulling in reviewers. Created 5 years, 9 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine. 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine.
9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' , 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' ,
10 }, 10 },
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 'destination': '<(PRODUCT_DIR)/content_shell/assets', 606 'destination': '<(PRODUCT_DIR)/content_shell/assets',
607 'files': [ 607 'files': [
608 '<(PRODUCT_DIR)/natives_blob.bin', 608 '<(PRODUCT_DIR)/natives_blob.bin',
609 '<(PRODUCT_DIR)/snapshot_blob.bin', 609 '<(PRODUCT_DIR)/snapshot_blob.bin',
610 ], 610 ],
611 }, 611 },
612 ], 612 ],
613 }], 613 }],
614 ], 614 ],
615 }, 615 },
616 {
617 'target_name': 'cardboard_javalib',
618 'type': 'none',
619 'variables': {
620 'jar_path': '../third_party/cardboard/cardboard.jar',
621 },
622 'includes': ['../build/java_prebuilt.gypi'],
623 },
616 ], 624 ],
617 }], # OS == "android" 625 }], # OS == "android"
618 ], 626 ],
619 } 627 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698