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

Unified Diff: third_party/boringssl/boringssl.gyp

Issue 1438853002: Remove all .gyp and .gypi files. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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/ashmem/ashmem.gyp ('k') | third_party/boringssl/boringssl_nacl.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/boringssl/boringssl.gyp
diff --git a/third_party/boringssl/boringssl.gyp b/third_party/boringssl/boringssl.gyp
deleted file mode 100644
index 845a920589a2a9a393d870cf12e0671702dadf4e..0000000000000000000000000000000000000000
--- a/third_party/boringssl/boringssl.gyp
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-{
- 'targets': [
- {
- 'target_name': 'boringssl',
- 'type': '<(component)',
- 'includes': [
- 'boringssl.gypi',
- ],
- 'sources': [
- '<@(boringssl_lib_sources)',
- ],
- 'defines': [
- 'BORINGSSL_IMPLEMENTATION',
- 'BORINGSSL_NO_STATIC_INITIALIZER',
- ],
- # TODO(davidben): Fix size_t truncations in BoringSSL.
- # https://crbug.com/429039
- 'msvs_disabled_warnings': [ 4267, ],
- 'conditions': [
- ['component == "shared_library"', {
- 'defines': [
- 'BORINGSSL_SHARED_LIBRARY',
- ],
- }],
- ['target_arch == "arm"', {
- 'sources': [ '<@(boringssl_linux_arm_sources)' ],
- }],
- ['target_arch == "arm64"', {
- 'sources': [ '<@(boringssl_linux_aarch64_sources)' ],
- }],
- ['target_arch == "ia32"', {
- 'conditions': [
- ['OS == "mac"', {
- 'sources': [ '<@(boringssl_mac_x86_sources)' ],
- }],
- ['OS == "linux" or OS == "android"', {
- 'sources': [ '<@(boringssl_linux_x86_sources)' ],
- }],
- ['OS == "win"', {
- 'sources': [ '<@(boringssl_win_x86_sources)' ],
- # Windows' assembly is built with Yasm. The other platforms use
- # the platform assembler.
- 'variables': {
- 'yasm_output_path': '<(SHARED_INTERMEDIATE_DIR)/third_party/boringssl',
- },
- 'includes': [
- '../yasm/yasm_compile.gypi',
- ],
- }],
- ['OS != "mac" and OS != "linux" and OS != "win" and OS != "android"', {
- 'defines': [ 'OPENSSL_NO_ASM' ],
- }],
- ]
- }],
- ['target_arch == "x64"', {
- 'conditions': [
- ['OS == "mac"', {
- 'sources': [ '<@(boringssl_mac_x86_64_sources)' ],
- }],
- ['OS == "linux" or OS == "android"', {
- 'sources': [ '<@(boringssl_linux_x86_64_sources)' ],
- }],
- ['OS == "win"', {
- 'sources': [ '<@(boringssl_win_x86_64_sources)' ],
- # Windows' assembly is built with Yasm. The other platforms use
- # the platform assembler.
- 'variables': {
- 'yasm_output_path': '<(SHARED_INTERMEDIATE_DIR)/third_party/boringssl',
- },
- 'includes': [
- '../yasm/yasm_compile.gypi',
- ],
- }],
- ['OS != "mac" and OS != "linux" and OS != "win" and OS != "android"', {
- 'defines': [ 'OPENSSL_NO_ASM' ],
- }],
- ]
- }],
- ['target_arch != "arm" and target_arch != "ia32" and target_arch != "x64" and target_arch != "arm64"', {
- 'defines': [ 'OPENSSL_NO_ASM' ],
- }],
- ],
- 'include_dirs': [
- 'src/include',
- # This is for arm_arch.h, which is needed by some asm files. Since the
- # asm files are generated and kept in a different directory, they
- # cannot use relative paths to find this file.
- 'src/crypto',
- ],
- 'direct_dependent_settings': {
- 'include_dirs': [
- 'src/include',
- ],
- 'conditions': [
- ['component == "shared_library"', {
- 'defines': [
- 'BORINGSSL_SHARED_LIBRARY',
- ],
- }],
- ],
- },
- },
- ],
-}
« no previous file with comments | « third_party/ashmem/ashmem.gyp ('k') | third_party/boringssl/boringssl_nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698