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

Unified Diff: third_party/kasko/kasko.gyp

Issue 2332843004: Remove GYP files. (Closed)
Patch Set: Merge Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/junit/junit.gyp ('k') | third_party/khronos/khronos.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/kasko/kasko.gyp
diff --git a/third_party/kasko/kasko.gyp b/third_party/kasko/kasko.gyp
deleted file mode 100644
index 0dc13fc2e7fc7b5d973d581e0db3cf47fa914582..0000000000000000000000000000000000000000
--- a/third_party/kasko/kasko.gyp
+++ /dev/null
@@ -1,85 +0,0 @@
-{
- 'targets': [
- {
- # GN: //third_party/kasko:kasko_features
- 'target_name': 'kasko_features',
- 'type': 'none',
- 'includes': [ '../../build/buildflag_header.gypi' ],
- 'variables': {
- 'buildflag_header_path': 'third_party/kasko/kasko_features.h',
- 'buildflag_flags': [
- 'ENABLE_KASKO=<(kasko)',
- ],
- },
- },
- ],
- 'conditions': [
- ['kasko==1', {
- 'targets': [
- {
- # GN: //third_party/kasko:copy_kasko_dll
- 'target_name': 'copy_kasko_dll',
- 'type': 'none',
- 'variables': {
- 'kasko_exe_dir': '<(DEPTH)/third_party/kasko/binaries',
- },
- 'outputs': [
- '<(PRODUCT_DIR)/kasko.dll',
- '<(PRODUCT_DIR)/kasko.dll.pdb',
- ],
- 'copies': [
- {
- 'destination': '<(PRODUCT_DIR)',
- 'files': [
- '<(kasko_exe_dir)/kasko.dll',
- '<(kasko_exe_dir)/kasko.dll.pdb',
- ],
- },
- ],
- },
- {
- # GN: //third_party/kasko
- 'target_name': 'kasko',
- 'type': 'none',
- 'hard_dependency': 1,
- 'dependencies': [
- 'copy_kasko_dll',
- 'kasko_features',
- ],
- 'direct_dependent_settings': {
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'AdditionalDependencies': [
- 'kasko.dll.lib',
- ],
- 'AdditionalLibraryDirectories': [
- '../third_party/kasko/binaries'
- ],
- },
- },
- 'include_dirs': [
- '../../third_party/kasko/binaries/include',
- ],
- },
- 'export_dependent_settings': [
- 'kasko_features',
- ]
- },
- ],
- }, { # 'kasko==0'
- 'targets': [
- {
- # GN: //third_party/kasko
- 'target_name': 'kasko',
- 'type': 'none',
- 'dependencies': [
- 'kasko_features',
- ],
- 'export_dependent_settings': [
- 'kasko_features',
- ]
- },
- ],
- }],
- ], # 'conditions'
-}
« no previous file with comments | « third_party/junit/junit.gyp ('k') | third_party/khronos/khronos.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698